アプリを開いた時にアラートが表示されません。原因を教えて下さい。お願いします。
viewcontroller
1override func viewDidLoad() { 2 super.viewDidLoad() 3 alert() 4 } 5 6func alert() { 7 let alert: UIAlertController = UIAlertController(title: "あなたはどちら?", message: "選択して下さい", preferredStyle: UIAlertController.Style.alert) 8 let appleButton: UIAlertAction = UIAlertAction(title: "りんご", style: UIAlertAction.Style.default, handler:{ 9 (action: UIAlertAction!) -> Void in 10 print("OK") 11 }) 12 let orangeButton: UIAlertAction = UIAlertAction(title: "オレンジ", style: UIAlertAction.Style.default, handler:{ 13 (action: UIAlertAction!) -> Void in 14 print("Cancel") 15 }) 16 //Button追加 17 alert.addAction(appleButton) 18 alert.addAction(orangeButton) 19 20 //Alertを表示 21 present(alert, animated: true, completion: nil) 22 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。