在警报中显示警报

Display an alert within an alert

我正在尝试显示接受用户输入然后弹出已提供文本的警报

@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)
}

输入和输出工作正常,但它没有发出另一个警报,只是在控制台中打印我需要的内容。

我是不是漏掉了什么?

我猜你有点误解了:"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)
}))