• Stars
    star
    363
  • Rank 117,000 (Top 3 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created over 10 years ago
  • Updated over 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A minimal progress indicator for iOS with status update support. Displays above UINavigationBar and below the Status Bar

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"];

#Show success message for 2s: [MWKProgressIndicator showSuccessMessage:@"Finished calculating route!"];

#Show error message for 2s:

[MWKProgressIndicator showErrorMessage:@"Parsing error :("];