DKPhotoPickerBrowserPhotoView.h 527 B

12345678910111213141516171819202122232425
  1. //
  2. // ZLPhotoPickerBrowserPhotoView.h
  3. // ZLAssetsPickerDemo
  4. //
  5. //
  6. #import <Foundation/Foundation.h>
  7. #import <UIKit/UIKit.h>
  8. @protocol DKPhotoPickerBrowserPhotoViewDelegate;
  9. @interface DKPhotoPickerBrowserPhotoView : UIView {}
  10. @property (nonatomic, weak) id <DKPhotoPickerBrowserPhotoViewDelegate> tapDelegate;
  11. @end
  12. @protocol DKPhotoPickerBrowserPhotoViewDelegate <NSObject>
  13. @optional
  14. - (void)view:(UIView *)view singleTapDetected:(UITouch *)touch;
  15. - (void)view:(UIView *)view doubleTapDetected:(UITouch *)touch;
  16. @end