0
私のコードはUIAlertController call
です。アラートビューにスイッチを追加する必要があります。UIAlertControllerにスイッチを追加できますか?
let alertController = UIAlertController(title: "Поздравляем!", message: "Ваш комментарий сохранен! Если хотите изменить его, выключите и включите переключатель Комментария!", preferredStyle: UIAlertControllerStyle.alert)
let okAction = UIAlertAction(title: "Окей", style: .default) { (action) -> Void in
let sb = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "mailVerify")
self.present(sb, animated: true, completion: nil)
}
alertController.addAction(okAction)
self.present(alertController, animated: true, completion: nil)
あなたはそれの互換性をダウングレードしたいという意味ですか? – Honey
可能な複製https://stackoverflow.com/questions/35029845/switch-in-uialert-controller-programatically –
[プログラムでUIAlertコントローラを切り替える]の可能な複製(https://stackoverflow.com/questions/35029845/switch) -in-uialert-controller-programatically) –