YQGradientProgressView.h 542 B

1234567891011121314151617181920212223242526
  1. //
  2. // YQGradientProgressView.h
  3. // shehui
  4. //
  5. // Created by pajia on 16/7/6.
  6. // Copyright © 2016年 happyfirst. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface YQGradientProgressModel : NSObject
  10. @property (nonatomic, strong) NSString *backGroundColor;
  11. @property (nonatomic, strong) NSString *startColor;
  12. @property (nonatomic, strong) NSString *endColor;
  13. @end
  14. @interface YQGradientProgressView : UIView
  15. @property(nonatomic,assign) float progress;
  16. @property (nonatomic, strong) YQGradientProgressModel *colorMoodel;
  17. @end