mirror of
				https://github.com/SoPat712/YTLitePlus.git
				synced 2025-11-03 12:59:26 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			759 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			759 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
#import "CAMShutterButtonSpec.h"
 | 
						|
 | 
						|
NS_CLASS_AVAILABLE_IOS(9_0)
 | 
						|
@interface CUShutterButton : UIButton
 | 
						|
+ (instancetype)shutterButton;
 | 
						|
+ (instancetype)smallShutterButton;
 | 
						|
+ (instancetype)smallShutterButtonWithLayoutStyle:(NSInteger)style NS_AVAILABLE_IOS(10_0);
 | 
						|
+ (instancetype)tinyShutterButton;
 | 
						|
+ (instancetype)tinyShutterButtonWithLayoutStyle:(NSInteger)style NS_AVAILABLE_IOS(10_0);
 | 
						|
 | 
						|
@property (getter=isPulsing) BOOL pulsing;
 | 
						|
@property (getter=isSpinning) BOOL spinning;
 | 
						|
@property NSInteger mode;
 | 
						|
 | 
						|
- (UIColor *)_colorForMode:(NSInteger)mode;
 | 
						|
- (UIColor *)_innerCircleColorForMode:(NSInteger)mode spinning:(BOOL)spinning;
 | 
						|
 | 
						|
- (UIView *)_innerView;
 | 
						|
- (UIView *)_outerView;
 | 
						|
 | 
						|
- (void)_updateOuterAndInnerLayers;
 | 
						|
- (void)_setSpec:(CAMShutterButtonSpec)spec;
 | 
						|
 | 
						|
@end
 |