mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-13 14:59:23 +00:00
13 lines
335 B
Objective-C
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
|