0
を表示できません。UIAlertController
と表示されています。UIAlertAction
View Controllerを終了します。 iOS 9.3以前は正常に動作していました。しかし、iOS 9.3では動作しません。以下はコードです。ViewControllerAnimated iOS 9.3
let alertController = UIAlertController(title: "Logged In Successfully", message: "asda", preferredStyle: .Alert)
// Create the actions
let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { UIAlertAction in
self.dismissViewControllerAnimated(true, completion: nil)
}
// Add the actions
alertController.addAction(okAction)
// Present the controller
self.presentViewController(alertController, animated: true, completion: nil)
私が追加したブレークポイントを。 Alertcontrollerは動作していますが、dismissViewControllerは実行されていません。 –
UIAlertActionパラメータを_に置き換えようとしましたか? – Roee84