Made with love and passion
- 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.
- iOS 9.0+
- Xcode 8.0 +
- Objective C
- 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"
// 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];
ERProgressHud is released under the MIT license. See LICENSE for details.