我提出了一個UIAlertController
,出現大約半秒鐘後消失,然後我需要觸摸OK按鈕。 任何有關可能導致此問題的想法?UIAlertController瞬間消失
僅供參考,代碼如下,我過去多次使用過它。除此之外,我傳遞一個調用者參數。
func showMessageBox(msg:String, title:String, caller:UIViewController) {
let attribMsg = NSAttributedString(string: msg,
attributes: [NSFontAttributeName : UIFont.systemFontOfSize(23.0)])
let userPopUp = UIAlertController(title:title,
message:nil, preferredStyle:UIAlertControllerStyle.Alert)
userPopUp.setValue(attribMsg, forKey: "attributedMessage")
userPopUp.addAction(UIAlertAction(title:"OK", style:UIAlertActionStyle.Default,
handler:{action in}))
caller.presentViewController(userPopUp, animated: true, completion: nil)
}
分享代碼請 –
顯示如何預編碼的代碼 –
我編輯了問題以添加代碼。 – Michel