我正在尝试在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)
请原谅这么简单的问题。我是编程的新手。非常感谢你的帮助!
答案 0 :(得分:1)
我认为一个月之后,你已经解决了,但如果没有,我认为这对你有用:
loadingNotification.hide(true)
或延迟:
loadingNotification.hide(true, afterDelay: 3)
希望它有所帮助! :)