轻松创建圆形进度视图。项目内包含一个示例使用。我现在正在我的 iPhone 应用程序 kickit 中使用它。
_progressView = [[BKECircularProgressView alloc] initWithFrame:CGRectMake(100, 200, 120, 120)];
[_progressView setProgressTintColor:[UIColor colorWithRed:224.0/255.0 green:80.0/255.0 blue:15.0/255.0 alpha:1]];
[_progressView setBackgroundTintColor:[UIColor colorWithRed:223.0/255.0 green:223.0/255.0 blue:223.0/255.0 alpha:1]];
[_progressView setLineWidth:3.0f];
[_progressView setProgress:0.2f];
[self.view addSubview:_progressView];
只需将文件 BKECircularProgressView.h
和 BKECircularProgressView.m
添加到您的项目中。