1234567891011121314151617181920212223242526 |
- //
- // YQGradientProgressView.h
- // shehui
- //
- // Created by pajia on 16/7/6.
- // Copyright © 2016年 happyfirst. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface YQGradientProgressModel : NSObject
- @property (nonatomic, strong) NSString *backGroundColor;
- @property (nonatomic, strong) NSString *startColor;
- @property (nonatomic, strong) NSString *endColor;
- @end
- @interface YQGradientProgressView : UIView
- @property(nonatomic,assign) float progress;
- @property (nonatomic, strong) YQGradientProgressModel *colorMoodel;
- @end
|