Отображать оповещение внутри оповещения

Я пытаюсь отобразить предупреждение, которое принимает пользовательский ввод, а затем выскакивает текст, который был дан

@IBAction func forgotPassword(_ sender: Any) {
    //1. Create the alert controller.
    let alert = UIAlertController(title: "Email Recovery", message: "Enter your email to recover your account", preferredStyle: .alert)

    //2. Add the text field. You can configure it however you need.
    alert.addTextField { (textField) in
        textField.text = ""
    }

    // 3. Grab the value from the text field, and print it when the user clicks OK.
    alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { [weak alert] (_) in
        let textField = alert?.textFields![0] // Force unwrapping because we know it exists.
        print("An email has been sent to \(String(describing: textField?.text)) for account recovery")
    }))

    // 4. Present the alert.
    self.present(alert, animated: true, completion: nil)
}

Ввод работает также хорошо, как вывод, хотя вместо того, чтобы выдавать другое предупреждение, он просто печатает то, что мне нужно, в консоли.

Я что-то пропустил?

1 ответ

Решение

Я думаю, вы немного неправильно поняли: "print" - это просто печать на вашей консоли, если вы хотите открыть новое оповещение после нажатия на кнопку "ok", вы можете дополнить свой код:

alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { [weak alert, weak self] (_) in
  let message = "An email has been sent to \(alert?.textFields?.first?.text ?? "") for account recovery"
  let innerAlert = UIAlertController(title: nil, message: message, preferredStyle: .alert)
  innerAlert.addAction(UIAlertAction(title: "OK", style: .default, handler:nil))
  self?.present(innerAlert, animated: true, completion: nil)
}))
Другие вопросы по тегам