Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 1.4 KB

README.md

File metadata and controls

67 lines (43 loc) · 1.4 KB

ProgressHUD

ProgressHUD is a lightweight and easy-to-use HUD for iOS 7 (written in Objective-C).

ProgressHUD . ProgressHUD . ProgressHUD

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

+ (void)dismiss;

Usage

1., Add the following import to the top of the file:

#import "ProgressHUD.h"

2., Use the following to display the HUD:

[ProgressHUD show:@"Please wait..."];

3., Simply dismiss after complete your task:

[ProgressHUD dismiss];

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