TouchImageView.h 515 B

12345678910111213141516171819202122
  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)TouchImageViewOnTouche:(TouchImageView *)touchImageView;
  13. @end
  14. @interface TouchImageView : UIImageView
  15. {
  16. @private
  17. id <TouchImageViewDelegate> __unsafe_unretained delegate;
  18. }
  19. @property (unsafe_unretained) id <TouchImageViewDelegate> delegate;
  20. @end