1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #import <UIKit/UIKit.h>
- @interface DZ_ScaleCircle : UIView
- @property(nonatomic)CGFloat lineWith;
- @property(nonatomic, strong)UIColor *unfillColor;
- @property (nonatomic, strong)UILabel *centerLable;
- @property (nonatomic, strong)UIColor *firstColor;
- @property (nonatomic, strong)UIColor *secondColor;
- @property (nonatomic, strong)UIColor *thirdColor;
- @property (nonatomic, strong)UIColor *fourthColor;
- @property (nonatomic, assign)float firstScale;
- @property (nonatomic, assign)float secondScale;
- @property (nonatomic, assign)float thirdScale;
- @property (nonatomic, assign)float fourthScale;
- @property (nonatomic, assign)float animation_time;
- - (instancetype) initWithFrame:(CGRect)frame;
- @end
|