我試圖做簡單的警報在新的Xcode 8.3.2更新我正在同時提出警告對話框中面臨的問題:無法將'UIAlertAction'類型的值轉換爲期望的參數類型'UIViewController'?
@IBAction func testButonAlert()
{
let alertAction = UIAlertAction(title : "Hi TEst" ,
style : UIAlertActionStyle.destructive,
handler : { (UIAlertActionStyle) -> Void in print("") })
self.present(alertAction , animated: false, completion: nil)
}
錯誤:
不能鍵入「UIAlertAction」的值轉換爲預期參數類型 '的UIViewController'