TCCircleProgressView.h 568 B

123456789101112131415161718192021222324
  1. //
  2. // TCCircleProgressView.h
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by linkzhzhu on 2017/12/12.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TCCircleProgressView: UIView
  10. @property (strong, nonatomic)UIColor *centerColor;
  11. @property (strong, nonatomic)UIColor *arcBackColor;
  12. @property (strong, nonatomic)UIColor *arcFinishColor;
  13. @property (strong, nonatomic)UIColor *arcUnfinishColor;
  14. //百分比数值(0-1)
  15. @property (assign, nonatomic)float percent;
  16. //圆环宽度
  17. @property (assign, nonatomic)float width;
  18. @end