// // DACircularProgressView.h // DACircularProgress // // #import @interface DACircularProgressView : UIView @property (nonatomic, strong) UIColor *trackTintColor UI_APPEARANCE_SELECTOR; @property (nonatomic, strong) UIColor *progressTintColor UI_APPEARANCE_SELECTOR; @property (nonatomic) NSInteger roundedCorners UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :- ( @property (nonatomic) CGFloat thicknessRatio UI_APPEARANCE_SELECTOR; @property (nonatomic) NSInteger clockwiseProgress UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :- ( @property (nonatomic) CGFloat progress; @property (nonatomic) CGFloat indeterminateDuration UI_APPEARANCE_SELECTOR; @property (nonatomic) NSInteger indeterminate UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :- ( - (void)setProgress:(CGFloat)progress animated:(BOOL)animated; - (void)setProgress:(CGFloat)progress animated:(BOOL)animated initialDelay:(CFTimeInterval)initialDelay; @end