我有一种方法可以从通讯录中获取联系人并用他们做一些事情(“getContactInformation”)。
这个过程有点长(几秒钟),在这个过程之后我展示了一个新的ViewController
. 为了使其对用户友好,我想使用MBProgressHUD在流程开始时显示活动指示器并在结束时隐藏它。
最好的方法是什么?我已经对此进行了测试:
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
hud.labelText = @"Retrieving information...";
[self getContactInformation];
[MBProgressHUD hideHUDForView:self.view animated:YES];
[self presentViewController:newController animated:NO completion:nil];
但它不起作用(它不显示指标)。任何人都可以帮助我吗?
先感谢您