/SVProgressHUD

A clean and lightweight progress HUD for your iOS app.

Primary LanguageObjective-COtherNOASSERTION

SVProgressHUD+Kustom

SVProgressHUD(+Kustom) is ( Customization Category on top of a ) clean and easy-to-use HUD meant to display the progress of an ongoing task.

Usage

Customizing the HUD

You customize the appearance of the HUD using:

+ (void)setFont:(UIFont*)font;
+ (void)setBackgroundColor:(UIColor*)bgColor;
+ (void)setForegroundColor:(UIColor*)fgColor;
+ (void)setSuccessImage:(UIImage*)successImage;
+ (void)setErrorImage:(UIImage*)errorImage;

Example 1:

[SVProgressHUD setBackgroundColor:[UIColor redColor]];
[SVProgressHUD setForegroundColor:[UIColor yellowColor]];
[SVProgressHUD setFont:[UIFont fontWithName:@"AvenirNextCondensed-Regular" size:18]];

Example-1

Example 2:

[SVProgressHUD setBackgroundColor:[UIColor yellowColor]];
[SVProgressHUD setForegroundColor:[UIColor blackColor]];
[SVProgressHUD setFont:[UIFont fontWithName:@"HelveticaNeue-CondensedBlack" size:18]];

Example-2

Example 3:

[SVProgressHUD setBackgroundColor:[UIColor blackColor]];
[SVProgressHUD setForegroundColor:[UIColor redColor]];
[SVProgressHUD setFont:[UIFont fontWithName:@"Optima-ExtraBlack" size:18]];

Example-3