mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-08 06:46:38 +00:00
add 图片浏览
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// UIViewTap.h
|
||||
// Momento
|
||||
//
|
||||
// Created by Michael Waterfall on 04/11/2009.
|
||||
// Copyright 2009 d3i. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.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
|
||||
Reference in New Issue
Block a user