mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-12 06:19:22 +00:00
16 lines
496 B
Objective-C
16 lines
496 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <LegacyComponents/PGCamera.h>
|
|
|
|
@interface TGCameraModeControl : UIControl
|
|
|
|
@property (nonatomic, copy) void(^modeChanged)(PGCameraMode mode, PGCameraMode previousMode);
|
|
|
|
@property (nonatomic, assign) PGCameraMode cameraMode;
|
|
- (void)setCameraMode:(PGCameraMode)mode animated:(bool)animated;
|
|
|
|
- (void)setHidden:(bool)hidden animated:(bool)animated;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame avatar:(bool)avatar videoModeByDefault:(bool)videoModeByDefault;
|
|
|
|
@end
|