1
我想使顯示了信息的提示對話框,這是我在ViewController.swift代碼:無法調用非函數類型「UIViewController?」的值
func showErrorAlert(title: String , msg: String){
let alert = UIAlertController(title: title, message: msg, preferredStyle: .Alert)
let action = UIAlertAction(title: "OK", style: .Default, handler: nil)
alert.addAction(action)
presentedViewController(alert, animated: true, completion: nil)
}
最後一行是給我的錯誤:
"Cannot call value of non-function type "UIViewController?""
更改爲self.present(警報,動畫:假的,完成:無)也解決了這個問題。 – eyal
'presentViewController'給了我同樣的錯誤,只有'self.present'工作 – Antek