SimpleProgressHUD is an very simple and lightweight progress HUD for iOS. It is highly inspired on Sam Vermette’s SVProgressHUD for iOS.
- Drag the
ProgressHUD
folder into your project. - Import the
ProgressHUD.h
wherever you need
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;
Full supported thanks to thefotes contribution