AceSL
2020-11-21 a609d13ff3c5f4b58b286dbb9419fc9670799c99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  MyCircleView.h
//  MyCircleView
//
//  Created by 张威 on 2020/11/20.
//  Copyright © 2020 JSPY. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface MyCircleView : UIView
 
@property (nonatomic, assign) CGFloat strokelineWidth;         //进度条宽度
 
//progress: 0 ~ 100
- (void)circleWithProgress:(NSInteger)progress value:(CGFloat)value;
 
@end
 
NS_ASSUME_NONNULL_END