Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)