アラートを作成していますが、ユーザーが[OK]を押すと、アラートを解除できません。次のエラーが表示されます。UIAlertControllerでアラートを消すことはできません
2017-12-28 07:03:50.301947-0400 Prestamo[691:215874] API error: <_UIKBCompatInputView: 0x10249adc0; frame = (0 0; 0 0); layer = > returned 0 width, assuming UIViewNoIntrinsicMetric
私はインターネット上のあらゆる場所を検索していましたが、私を助けたものは見つかりませんでした。
override func viewDidAppear(_ animated: Bool) {
createAlert(title: "Licencia2", message: "En el momento no tienes una licencia válida!")
}
func createAlert (title:String, message:String) {
let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: {(action) in
alert.dismiss(animated: false, completion: nil)
}))
self.present(alert, animated: false, completion: nil)
}
すべてのアイデアは、あなたが警告コントローラを却下する必要はありません
重複:https://stackoverflow.com/questions/24350784/how-to-現時点で警告を表示するuialertcontroller?rq = 1 –
重複していません。私の警報は鳴るが、後はそれを閉じることはできない。 – Chris
IMOの問題は、 'super.viewDidAppear(animated)'を呼び出さない 'viewDidAppear'にあります。 –