MBProgressHUD
showWhileExecuting を使用してネットワークから一部のデータをクエリしますが、MBProgressHUD
中心にならない場合があります
写真上 (赤数字):
左上にローディングが表示され、中央に背景が表示されます。
1.ローディング表示は MBProgressHUD の背景にありません 2.ローディングを含まない背景を表示するだけです
-(void)viewDidLoad
{
//other code ...
mb = [[MBProgressHUD alloc] initWithView:self.navigationController.view];
// --> i try which causes also an error
//[[MBProgressHUD alloc] initWithWindow:self.view.window];
// --> error too
//[[MBProgressHUD alloc] initWithView:self.view];
mb.labelText = @"loding city...";
[self.navigationController.view addSubview:mb];
[mb showWhileExecuting:@selector(queryCity:)
onTarget:self
withObject:[NSNumber numberWithInt:1]
animated:YES];
}
-(void)queryCity:(NSNumber*)flag
{
//query some data from network.
}