2
在嘗試實現UI警報時,我遇到了一些問題。我正在使用Xcode 8 beta 4中的swift 3.0,我試圖讓一個按鈕激活一個警報,一個按鈕(取消)取消警報另一個(ok)執行一個動作作爲UIAction按鈕,但是我一直無法甚至得到一個警報顯示。爲什麼不顯示此UIAlertController?
var warning = UIAlertController(title: "warning", message: "This will erase all content", preferredStyle: .Alert)
var okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) {
UIAlertAction in
NSLog("OK Pressed")
}
var cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel) {
UIAlertAction in
NSLog("Cancel Pressed")
}
warning.addAction(okAction) {
// this is where the actions to erase the content in the strings
}
warning.addAction(cancelAction)
self.presentViewController(warning, animated: true, completion: nil)
非常感謝你,當我回家的時候給它一個嘗試,但它對於swift3.0還沒有太多幫助。大大appriecated。 – Yellow