BKECircularProgressView 0.2

BKECircularProgressView 0.2

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布最新发布2014年12月

未指派 维护。




轻松创建圆形进度视图。项目内包含一个示例使用。我现在正在我的 iPhone 应用程序 kickit 中使用它。

Screenshot

示例使用

_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.hBKECircularProgressView.m 添加到您的项目中。