ProgressHUD is a lightweight and easy-to-use HUD for iOS 7 (written in Objective-C).
Installation
Drag the ProgressHUD/ProgressHUD folder into your project.
Requirements
- Xcode 5
- iOS 7
- ARC
Displaying the HUD
+ (void)show:(NSString *)status; + (void)showSuccess:(NSString *)status; + (void)showError:(NSString *)status;
showSuccess and showError will automatically dismiss the HUD.
Dismissing the HUD
Usage
1., Add the following import to the top of the file:
2., Use the following to display the HUD:
[ProgressHUD show:@"Please wait..."];
3., Simply dismiss after complete your task:
Color shemes
Use sheme_white or sheme_black depending on your needs. However feel free to customize the color settings in ProgressHUD.h file.
Credits
ProgressHUD was inspired by SVProgressHUD project.
The success and error icons are from Glyphish.
You can find us on Twitter @coderelated or at relatedcode.com


