Ilya Laktyushin 7741978b7e Video Editing
2020-05-23 13:26:53 +03:00

13 lines
335 B
Objective-C

#import <UIKit/UIKit.h>
@interface TGModernGalleryZoomableScrollView : UIScrollView
@property (nonatomic) CGFloat normalZoomScale;
@property (nonatomic, copy) void (^singleTapped)();
@property (nonatomic, copy) void (^doubleTapped)(CGPoint point);
- (instancetype)initWithFrame:(CGRect)frame hasDoubleTap:(bool)hasDoubleTap;
@end