「IOS開発」簡単ナウローディング表示ライブラリ MBProgressHUDの使い方
サンプルコード下記:
#import “MBProgressHUDManager.h"
@property (nonatomic, strong) MBProgressHUDManager *HUDManager;
– (void)viewDidLoad
{
[super viewDidLoad];
self.HUDManager = [[MBProgressHUDManager alloc] initWithView:self.navigationController.view];
[self.HUDManager showIndeterminateWithMessage:@"With a block" duration:2 complection:^{
}];
}
URL: