2020-02-22 15:38:54 +04:00

18 lines
438 B
Objective-C

#import <UIKit/UIKit.h>
typedef enum
{
TGCameraShutterButtonNormalMode,
TGCameraShutterButtonVideoMode,
TGCameraShutterButtonRecordingMode
} TGCameraShutterButtonMode;
@interface TGCameraShutterButton : UIControl
- (void)setButtonMode:(TGCameraShutterButtonMode)mode animated:(bool)animated;
- (void)setEnabled:(bool)enabled animated:(bool)animated;
- (void)setHighlighted:(bool)highlighted animated:(bool)animated;
@end