我想以下列方式使用MBProgressHUD
:在我的方法中,我调用多个服务器和其他需要显示 HUD 的操作。我想知道在完成这些特定操作之前,“保持”主线程的最佳方法是什么。
例如:
method {
MBProgressHUD (action 1) //don't move on until this is done
//some other code...
MBProgressHUD (action 2)
//some other code...
}
我对iOS很新,很抱歉,如果这太简单了。谢谢。
答案 0 :(得分:1)
我认为you use graphical change in MBProgressHUD.
示例: -
[HUD showWhileExecuting:@selector(fetchNewData) onTarget:self withObject:nil animated:YES];
将在辅助线程上调用fetchNewData。所以MBProgressHUD中有no use graphical change
。
如果您想在hudWasHidden delegete
答案 1 :(得分:0)