mirror of
				https://github.com/SoPat712/YTLitePlus.git
				synced 2025-11-03 12:59:26 -05: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
 |