2
0

MWTapDetectingImageView.h 685 B

12345678910111213141516171819202122232425262728
  1. //
  2. // UIImageViewTap.h
  3. // Momento
  4. //
  5. // Created by Michael Waterfall on 04/11/2009.
  6. // Copyright 2009 d3i. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @protocol MWTapDetectingImageViewDelegate;
  11. @interface MWTapDetectingImageView : UIImageView {}
  12. @property (nonatomic, weak) id <MWTapDetectingImageViewDelegate> tapDelegate;
  13. @end
  14. @protocol MWTapDetectingImageViewDelegate <NSObject>
  15. @optional
  16. - (void)imageView:(UIImageView *)imageView singleTapDetected:(UITouch *)touch;
  17. - (void)imageView:(UIImageView *)imageView doubleTapDetected:(UITouch *)touch;
  18. - (void)imageView:(UIImageView *)imageView tripleTapDetected:(UITouch *)touch;
  19. @end