Skip to content

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

License

Notifications You must be signed in to change notification settings

qiujunjun/ProgressHUD

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published