我想使用MBProgressHUD
以下方式:在我的方法中,我调用多个服务器和其他需要显示HUD的操作。我想知道在完成这些特定操作之前“保持”主线程的最佳方式是什么。
例如:
method {
MBProgressHUD (action 1) //don't move on until this is done
//some other code...
MBProgressHUD (action 2)
//some other code...
}
我对 iOS 很陌生,如果这太简单了,我很抱歉。谢谢你。