zhangjie579 / LyProgressCircleView

进度圆环封装

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LyProgressCircleView

进度圆环封装

pod 'LyProgressCircleView'

demo

LyProgressCircleView *circle = [[LyProgressCircleView alloc] init];
circle.frame = CGRectMake(100, 100, 200, 200);
[circle updateConfig:^(LyProgressCircleConfig *config) {
    config.startAngles(0).endAngles(M_PI * 2).containStartPoints(NO).containEndPoints(YES);
}];
circle.backgroundColor = [UIColor redColor];
[self.view addSubview:circle];

circle.progress = 0.3;

About

进度圆环封装

License:MIT License


Languages

Language:Objective-C 76.6%Language:Ruby 23.4%