mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-11-01 05:13:39 -04:00
22 lines
522 B
Objective-C
22 lines
522 B
Objective-C
#import "CAMShutterButtonSpec.h"
|
|
|
|
NS_CLASS_AVAILABLE_IOS(7_0)
|
|
@interface CAMShutterButton : UIButton
|
|
+ (instancetype)shutterButton;
|
|
+ (instancetype)smallShutterButton;
|
|
+ (instancetype)tinyShutterButton NS_AVAILABLE_IOS(8_0);
|
|
|
|
@property (getter=isPulsing) BOOL pulsing;
|
|
@property (getter=isSpinning) BOOL spinning;
|
|
|
|
@property NSInteger mode;
|
|
|
|
- (UIColor *)_colorForMode:(NSInteger)mode;
|
|
- (UIView *)_innerView;
|
|
- (UIView *)_outerView;
|
|
|
|
- (void)_updateOuterAndInnerLayers;
|
|
- (void)_setSpec:(CAMShutterButtonSpec)spec;
|
|
|
|
@end
|