萤石云 iOSSDK,移植跨平台相关工程
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  UIViewTap.h
//  Momento
//
//  Created by Michael Waterfall on 04/11/2009.
//  Copyright 2009 d3i. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@protocol MWTapDetectingViewDelegate;
 
@interface MWTapDetectingView : UIView {}
 
@property (nonatomic, weak) id <MWTapDetectingViewDelegate> tapDelegate;
 
@end
 
@protocol MWTapDetectingViewDelegate <NSObject>
 
@optional
 
- (void)view:(UIView *)view singleTapDetected:(UITouch *)touch;
- (void)view:(UIView *)view doubleTapDetected:(UITouch *)touch;
- (void)view:(UIView *)view tripleTapDetected:(UITouch *)touch;
 
@end