Translate_offine/HDwallpaper/Tool/CircularProgressView.h
2024-07-23 15:14:59 +08:00

20 lines
340 B
Objective-C

//
// CircularProgressView.h
// HD wallpaper
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface CircularProgressView : UIView
@property (nonatomic, assign) CGFloat progress; // 0.0 to 1.0
@property (nonatomic, strong) UIColor *progressColor;
@property (nonatomic, strong) UIColor *trackColor;
@end
NS_ASSUME_NONNULL_END