/SimpleProgressHUD

SimpleProgressHUD is an very simple and lightweight progress HUD for iOS.

Primary LanguageObjective-C

SimpleProgressHUD

SimpleProgressHUD is an very simple and lightweight progress HUD for iOS. It is highly inspired on Sam Vermette’s SVProgressHUD for iOS.

Installation

  • Drag the ProgressHUD folder into your project.
  • Import the ProgressHUD.h wherever you need

Usage

See the sample Xcode project in /Demo

SimpleProgressHUD is created as a singleton, it doesn’t need to be explicitly allocated and instantiated; you directly call [ProgressHUD defaultHUD] and can be shown using

- showInView:(UIView*)view;

You dismiss it using:

-(void) hideActivityIndicator;

Automatic Reference Counting (ARC) support

Full supported thanks to thefotes contribution