mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-11-01 05:13:39 -04:00
18 lines
501 B
Objective-C
18 lines
501 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
NS_CLASS_AVAILABLE_IOS(7_0)
|
|
@interface CAMElapsedTimeView : UIView
|
|
@property (readonly) UILabel *_timeLabel;
|
|
@property (readonly) UIImageView *_recordingImageView;
|
|
@property (readonly) NSTimer *_updateTimer;
|
|
@property (readonly) NSDate *_startTime;
|
|
- (void)_beginRecordingAnimation;
|
|
- (void)_endRecordingAnimation;
|
|
- (void)startTimer;
|
|
- (void)endTimer;
|
|
- (void)resetTimer;
|
|
- (void)_update:(NSTimer *)timer;
|
|
- (BOOL)usingBadgeAppearance;
|
|
- (UIColor *)_backgroundRedColor;
|
|
@end
|