私は、viewDidLoad()関数でAlert View Controllerを開くべきアプリケーションを持っています。それは簡単なリマインダーアプリです。コードの一部は次のとおりです。アプリケーションにAlert View Controllerが表示されませんか?
let alert = UIAlertController(title: "Reminder", message: "Your reminder text", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "Sure!", style: UIAlertActionStyle.default) {
(finished) in
self.didReceiveRemoteNotificationAction()
})
self.present(alert, animated: true, completion: nil)
問題は次のとおりです。それは表示されません。誰も私になぜ説明することができますか?
私のストーリーボードは非常に...インタビューされていることがわかります。しかし、それは問題ではないはずですよね?
ははるか*あなたは非常にMICH –
に感謝! :Dそれは今作動する! –