我正在尝试在Swift中运行MBProgressHUD。我发现我可以运行与UIAlert微调器非常相似的微调器,但是我在使用其他功能时遇到了麻烦。根据MBProgress文档,您还可以使用确定的加载程序以及其他功能,包括可以成功加载的CustomView。我试图弄清楚如何在Swift中加载和访问这些其他功能。
这是不确定的微调器的当前代码(我可以使用的唯一功能):
let loadingNotification = MBProgressHUD.showHUDAddedTo(self.view, animated: true)
loadingNotification.mode = MBProgressHUDMode.Indeterminate
loadingNotification.labelText = "Loading"
要关闭ProgressHUD:
MBProgressHUD.hideAllHUDsForView(self.view, animated: true)
请原谅这样一个简单的问题。我是编程新手。非常感谢您的所有帮助!
最佳答案
我认为一个月后,您已经解决了问题,但是如果没有,我认为这对您有用:
loadingNotification.hide(true)
或延迟:
loadingNotification.hide(true, afterDelay: 3)
希望能帮助到你! :)
关于ios - 如何在Swift中使用MBProgressHUD CustomView/Determinate Loader?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30066207/