Awesome
FBProgressHUD is a Facebook Messenger style Async Loader for iOS.
##Usage -
- Add the folder FBProgressHUD in your Xcode Project.
#import hud.h
in your controller file.- Use
hud * myHud;
myHud = [[hud alloc]init];
[myHud showHudAddedToView:self.view];
- You can use the 'statusText' Property to change the text of Label.
- Use
[myHud hideFromView:self.view];
to hide after the request is completed.