TouchImageView.h 584 B

123456789101112131415161718192021222324
  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. - (void)TouchImageViewOnLongPress:(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