// // CircleProgressView.h // ProgressView // // Created by zhao on 16/9/13. // Copyright © 2016年 zhaoName. All rights reserved. // 正常的圆形进度条 #import #import #import "FULiveDefine.h" @interface FUCircleProgressView : UIView @property (nonatomic, strong) UIColor *progressColor; /**< 进度条颜色 默认红色*/ @property (nonatomic, strong) UIColor *progressBackgroundColor; /**< 进度条背景色 默认灰色*/ @property (nonatomic, assign) CGFloat progressWidth; /**< 进度条宽度 默认3*/ @property (nonatomic, assign) float percent; /**< 进度条进度 0-1*/ @property (nonatomic, assign) BOOL clockwise; /**< 0顺时针 1逆时针*/ @property (nonatomic, strong) UILabel *centerLabel; /**< 记录进度的Label*/ @property (nonatomic, strong) UIColor *labelbackgroundColor; /**