Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manofit/gjprogressview
使用十分方便的进度progress显示控件
https://github.com/manofit/gjprogressview
animation demo ios ios-app objective-c progress progressbar swift swift3 swift4
Last synced: 3 months ago
JSON representation
使用十分方便的进度progress显示控件
- Host: GitHub
- URL: https://github.com/manofit/gjprogressview
- Owner: manofit
- Created: 2017-10-31T08:28:03.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-01T08:06:12.000Z (about 7 years ago)
- Last Synced: 2024-10-12T14:22:36.151Z (3 months ago)
- Topics: animation, demo, ios, ios-app, objective-c, progress, progressbar, swift, swift3, swift4
- Language: Objective-C
- Homepage:
- Size: 51.8 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GJProgressView
使用十分方便的进度显示控件。
- 你可以下载后直接拖进项目;
- 也可以使用cocoapods;
```
pod search GJProgressView
```
```
pod 'GJProgressView', '~> 1.0.0'
```
调用方法十分简单:
```
GJProgressView *progressView = [[GJProgressView alloc] initWithFrame:CGRectMake((self.view.frame.size.width/2) - 25, 100, 50, 50)];
progressView.strokelineWidth = 5;
[progressView circleWithProgress:67 andIsAnimate:YES];
[self.view addSubview:progressView];
```
最后,请大家不忘给个**星**。![image](https://github.com/manofit/GJProgressView/blob/master/GJProgressView/Simulator%20Screen%20Shot%20-%20iPhone%208%20-%202017-10-31%20at%2015.26.15.png)