ERProgressHud-ObjectiveC
ERProgressHud-ObjectiveC copied to clipboard
ERProgressHud-ObjectiveC
ERProgressHud-ObjectiveC
Made with love and passion
Introduction
- A simple Progresshud written in ObjectiveC.
- Five different kinds of ProgressHud is implemented to use.
- Easy to customize.
- ProgressHud With various options.
- Easy to add title.
- Blur Background View.
- Dark Background View.
Demo

Requirements
- iOS 9.0+
- Xcode 8.0 +
- Objective C
Installation
- Download the least source files.
- Drag ERPogressHud/ERPogressHud folder to Xcode project. Make sure to select Copy items if needed.
- In the source files where you need to use the library, import the header file.
#import "ERProgressHud.h"
How To Use
// Show Simple ProgressHud without Title
[[ERProgressHud sharedInstance] show];
// Show Blur Background View ProgressHud without Title
[[ERProgressHud sharedInstance] showWithBlurView];
// Show Transparent Background View ProgressHud with Title
[[ERProgressHud sharedInstance] showWithTitle:@"Loading..."];
// Show Blur Background View ProgressHud with Title
[[ERProgressHud sharedInstance] showBlurViewWithTitle:@"Loading..."];
// Show Dark Background View ProgressHud with Title
[[ERProgressHud sharedInstance] showDarkBackgroundViewWithTitle:@"Loading..."];
// Dismiss ProgressHud
[[ERProgressHud sharedInstance] hide];
License
ERProgressHud is released under the MIT license. See LICENSE for details.