| 1234567891011121314151617181920212223242526 |
- //
- // ZLPhotoPickerBrowserPhotoImageView.h
- // ZLAssetsPickerDemo
- //
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @protocol DKPhotoPickerBrowserPhotoImageViewDelegate;
- @interface DKPhotoPickerBrowserPhotoImageView : UIImageView {}
- @property (nonatomic, weak) id <DKPhotoPickerBrowserPhotoImageViewDelegate> tapDelegate;
- @property (assign,nonatomic) CGFloat progress;
- @end
- @protocol DKPhotoPickerBrowserPhotoImageViewDelegate <NSObject>
- @optional
- - (void)imageView:(UIImageView *)imageView singleTapDetected:(UITouch *)touch;
- - (void)imageView:(UIImageView *)imageView doubleTapDetected:(UITouch *)touch;
- @end
|