Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwkoelb/MWKProgressIndicator
A minimal progress indicator for iOS with status update support. Displays above UINavigationBar and below the Status Bar
https://github.com/mwkoelb/MWKProgressIndicator
Last synced: 3 months ago
JSON representation
A minimal progress indicator for iOS with status update support. Displays above UINavigationBar and below the Status Bar
- Host: GitHub
- URL: https://github.com/mwkoelb/MWKProgressIndicator
- Owner: mwkoelb
- License: mit
- Created: 2014-03-28T17:44:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-03T07:03:27.000Z (over 10 years ago)
- Last Synced: 2024-07-20T11:06:12.428Z (4 months ago)
- Language: Objective-C
- Size: 342 KB
- Stars: 363
- Watchers: 16
- Forks: 32
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MWKProgressIndicator
====================A minimal progress indicator for iOS with status update support. Displays above UINavigationBar and below the Status Bar.
#Show:
```[MWKProgressIndicator show];```#Dismiss:
```[MWKProgressIndicator dismiss];```#Update progress:
```[MWKProgressIndicator updateProgress:0.1f];```#Update message:
```[MWKProgressIndicator updateMessage:@"Downloading OSM Data"];```![](https://raw.githubusercontent.com/maxor92/MWKProgressIndicator/master/loading.png)
#Show success message for 2s:
```[MWKProgressIndicator showSuccessMessage:@"Finished calculating route!"];```![](https://raw.githubusercontent.com/maxor92/MWKProgressIndicator/master/success.png)
#Show error message for 2s:
```[MWKProgressIndicator showErrorMessage:@"Parsing error :("];```
![](https://raw.githubusercontent.com/maxor92/MWKProgressIndicator/master/error.png)