|
11 | 11 | IB_DESIGNABLE |
12 | 12 | @interface MBCircularProgressBarView : UIView |
13 | 13 |
|
14 | | -@property (nonatomic) IBInspectable CGFloat value; |
15 | | -@property (nonatomic) IBInspectable CGFloat maxValue; |
| 14 | +@property (nonatomic,assign) IBInspectable CGFloat value; |
| 15 | +@property (nonatomic,assign) IBInspectable CGFloat maxValue; |
16 | 16 |
|
17 | | -@property (nonatomic) IBInspectable CGFloat valueFontSize; |
18 | | -@property (nonatomic) IBInspectable CGFloat unitFontSize; |
19 | | -@property (nonatomic) IBInspectable NSString* unitString; |
20 | | -@property (nonatomic) IBInspectable UIColor* fontColor; |
| 17 | +@property (nonatomic,assign) IBInspectable CGFloat valueFontSize; |
| 18 | +@property (nonatomic,assign) IBInspectable CGFloat unitFontSize; |
| 19 | +@property (nonatomic,copy) IBInspectable NSString* unitString; |
| 20 | +@property (nonatomic,strong) IBInspectable UIColor* fontColor; |
21 | 21 |
|
22 | | -@property (nonatomic) IBInspectable CGFloat progressRotationAngle; |
23 | | -@property (nonatomic) IBInspectable CGFloat progressAngle; |
| 22 | +@property (nonatomic,assign) IBInspectable CGFloat progressRotationAngle; |
| 23 | +@property (nonatomic,assign) IBInspectable CGFloat progressAngle; |
24 | 24 |
|
25 | | -@property (nonatomic) IBInspectable CGFloat progressLineWidth; |
26 | | -@property (nonatomic) IBInspectable UIColor* progressColor; |
27 | | -@property (nonatomic) IBInspectable UIColor* progressStrokeColor; |
| 25 | +@property (nonatomic,assign) IBInspectable CGFloat progressLineWidth; |
| 26 | +@property (nonatomic,strong) IBInspectable UIColor* progressColor; |
| 27 | +@property (nonatomic,strong) IBInspectable UIColor* progressStrokeColor; |
28 | 28 | //CGLineCap |
29 | | -@property (nonatomic) IBInspectable NSInteger progressCapType; |
| 29 | +@property (nonatomic,assign) IBInspectable NSInteger progressCapType; |
30 | 30 |
|
31 | | -@property (nonatomic) IBInspectable CGFloat emptyLineWidth; |
32 | | -@property (nonatomic) IBInspectable UIColor* emptyLineColor; |
| 31 | +@property (nonatomic,assign) IBInspectable CGFloat emptyLineWidth; |
| 32 | +@property (nonatomic,strong) IBInspectable UIColor* emptyLineColor; |
33 | 33 | //CGLineCap |
34 | | -@property (nonatomic) IBInspectable NSInteger emptyCapType; |
| 34 | +@property (nonatomic,assign) IBInspectable NSInteger emptyCapType; |
35 | 35 |
|
36 | 36 | @end |
0 commit comments