TouchImageView.h 596 B

1234567891011121314151617181920212223
  1. //
  2. // TouchImageView.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 2/18/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class TouchImageView;
  10. @protocol TouchImageViewDelegate <NSObject>
  11. @required
  12. //- (void)touchLabel:(TouchImageView *)touchLabel touchesWtihTag:(NSInteger)tag;
  13. - (void)TouchImageViewOnTouche:(TouchImageView *)touchImageView;
  14. @end
  15. @interface TouchImageView : UIImageView
  16. {
  17. @private
  18. id <TouchImageViewDelegate> __unsafe_unretained delegate;
  19. }
  20. @property (unsafe_unretained) id <TouchImageViewDelegate> delegate;
  21. @end