我使用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.
}