アプリの最初の読み込み時に UIAlertView または Controller を追加しようとしています。現在、viewDidLoad
メソッドにこのコードがあります。
let welcomeAlert = UIAlertController(title: "hola", message: "this is a test.", preferredStyle: UIAlertControllerStyle.Alert)
welcomeAlert.addAction(UIAlertAction(title: "ok.", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(welcomeAlert, animated: true, completion: nil)
アラート ビューが表示されないのはなぜですか? IBAction
同じコードをボタンの内部で使用しましたが、期待どおりに機能します。