| 123456789101112131415161718192021222324 |
- //
- // DACircularProgressView.h
- // DACircularProgress
- //
- //
- #import <UIKit/UIKit.h>
- @interface DACircularProgressView : UIView<CAAnimationDelegate>
- @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
|