![Demo](./ScreenShot/screenshot.gif)
//Just add LoadingIndicator.h and LoadingIndicator.m to your project
//Initialize the indicator in viewDidLoad
- (void)viewDidLoad {
[super viewDidLoad];
self.indicator = [[LoadingIndicator alloc] initWithDelegate:self];
self.indicator.loadingText = @"Loading";
}
//Show indicator
[self.indicator show];
//Hide indicator
[self.indicator hide];
- iOS 6.0+
- Xcode 5.0