DKPhotoPickerBrowserPhotoImageView.h 634 B

1234567891011121314151617181920212223242526
  1. //
  2. // ZLPhotoPickerBrowserPhotoImageView.h
  3. // ZLAssetsPickerDemo
  4. //
  5. //
  6. #import <Foundation/Foundation.h>
  7. #import <UIKit/UIKit.h>
  8. @protocol DKPhotoPickerBrowserPhotoImageViewDelegate;
  9. @interface DKPhotoPickerBrowserPhotoImageView : UIImageView {}
  10. @property (nonatomic, weak) id <DKPhotoPickerBrowserPhotoImageViewDelegate> tapDelegate;
  11. @property (assign,nonatomic) CGFloat progress;
  12. @end
  13. @protocol DKPhotoPickerBrowserPhotoImageViewDelegate <NSObject>
  14. @optional
  15. - (void)imageView:(UIImageView *)imageView singleTapDetected:(UITouch *)touch;
  16. - (void)imageView:(UIImageView *)imageView doubleTapDetected:(UITouch *)touch;
  17. @end