LuxChat  2.0
Instant messenger for iOS
IDMTapDetectingImageView.h
1 //
2 // IDMTapDetectingImageView.h
3 // IDMPhotoBrowser
4 //
5 // Created by Michael Waterfall on 04/11/2009.
6 // Copyright 2009 d3i. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
12 
13 @interface IDMTapDetectingImageView : UIImageView
14 {
15  id <IDMTapDetectingImageViewDelegate> __weak tapDelegate;
16 }
17 
18 @property (nonatomic, weak) id <IDMTapDetectingImageViewDelegate> tapDelegate;
19 
20 - (void)handleSingleTap:(UITouch *)touch;
21 - (void)handleDoubleTap:(UITouch *)touch;
22 - (void)handleTripleTap:(UITouch *)touch;
23 
24 @end
25 
27 
28 @optional
29 - (void)imageView:(UIImageView *)imageView singleTapDetected:(UITouch *)touch;
30 - (void)imageView:(UIImageView *)imageView doubleTapDetected:(UITouch *)touch;
31 - (void)imageView:(UIImageView *)imageView tripleTapDetected:(UITouch *)touch;
32 
33 @end
Definition: IDMTapDetectingImageView.h:13
Definition: IDMTapDetectingImageView.h:26