Skip to content

Commit

Permalink
declare property attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
MatiBot committed Aug 18, 2015
1 parent 34037ab commit ffd65a5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Pod/Classes/MBCircularProgressBarLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@property (nonatomic,assign) CGFloat maxValue;
@property (nonatomic,assign) CGFloat valueFontSize;
@property (nonatomic,assign) CGFloat unitFontSize;
@property (nonatomic,strong) NSString* unitString;
@property (nonatomic,copy) NSString* unitString;
@property (nonatomic,strong) UIColor* fontColor;

@property (nonatomic,assign) CGFloat progressLineWidth;
Expand Down
30 changes: 15 additions & 15 deletions Pod/Classes/MBCircularProgressBarView.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,26 @@
IB_DESIGNABLE
@interface MBCircularProgressBarView : UIView

@property (nonatomic) IBInspectable CGFloat value;
@property (nonatomic) IBInspectable CGFloat maxValue;
@property (nonatomic,assign) IBInspectable CGFloat value;
@property (nonatomic,assign) IBInspectable CGFloat maxValue;

@property (nonatomic) IBInspectable CGFloat valueFontSize;
@property (nonatomic) IBInspectable CGFloat unitFontSize;
@property (nonatomic) IBInspectable NSString* unitString;
@property (nonatomic) IBInspectable UIColor* fontColor;
@property (nonatomic,assign) IBInspectable CGFloat valueFontSize;
@property (nonatomic,assign) IBInspectable CGFloat unitFontSize;
@property (nonatomic,copy) IBInspectable NSString* unitString;
@property (nonatomic,strong) IBInspectable UIColor* fontColor;

@property (nonatomic) IBInspectable CGFloat progressRotationAngle;
@property (nonatomic) IBInspectable CGFloat progressAngle;
@property (nonatomic,assign) IBInspectable CGFloat progressRotationAngle;
@property (nonatomic,assign) IBInspectable CGFloat progressAngle;

@property (nonatomic) IBInspectable CGFloat progressLineWidth;
@property (nonatomic) IBInspectable UIColor* progressColor;
@property (nonatomic) IBInspectable UIColor* progressStrokeColor;
@property (nonatomic,assign) IBInspectable CGFloat progressLineWidth;
@property (nonatomic,strong) IBInspectable UIColor* progressColor;
@property (nonatomic,strong) IBInspectable UIColor* progressStrokeColor;
//CGLineCap
@property (nonatomic) IBInspectable NSInteger progressCapType;
@property (nonatomic,assign) IBInspectable NSInteger progressCapType;

@property (nonatomic) IBInspectable CGFloat emptyLineWidth;
@property (nonatomic) IBInspectable UIColor* emptyLineColor;
@property (nonatomic,assign) IBInspectable CGFloat emptyLineWidth;
@property (nonatomic,strong) IBInspectable UIColor* emptyLineColor;
//CGLineCap
@property (nonatomic) IBInspectable NSInteger emptyCapType;
@property (nonatomic,assign) IBInspectable NSInteger emptyCapType;

@end

0 comments on commit ffd65a5

Please sign in to comment.