| 12345678910111213141516171819202122232425 |
- //
- // ZLPhotoPickerBrowserPhotoView.h
- // ZLAssetsPickerDemo
- //
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @protocol DKPhotoPickerBrowserPhotoViewDelegate;
- @interface DKPhotoPickerBrowserPhotoView : UIView {}
- @property (nonatomic, weak) id <DKPhotoPickerBrowserPhotoViewDelegate> tapDelegate;
- @end
- @protocol DKPhotoPickerBrowserPhotoViewDelegate <NSObject>
- @optional
- - (void)view:(UIView *)view singleTapDetected:(UITouch *)touch;
- - (void)view:(UIView *)view doubleTapDetected:(UITouch *)touch;
- @end
|