Swift: Insert Alert Box with Text Input (and Store Text Input )

后端 未结 3 654
一个人的身影
一个人的身影 2021-02-12 23:18

In one of my viewController, I want to make an alert box appear that prompts the user to type this information.Then, I want the user to st

3条回答
  •  自闭症患者
    2021-02-13 00:04

    SWIFT 3

    func presentAlert() {
        let alertController = UIAlertController(title: "Email?", message: "Please input your email:", preferredStyle: .alert)
    
        let confirmAction = UIAlertAction(title: "Confirm", style: .default) { (_) in
            if let emailTextField = alertController.textFields?[0] {
                // do your stuff with emailTextField
            } 
        }
    
        let cancelAction = UIAlertAction(title: "Cancel", style: .cancel) { (_) in }
    
        alertController.addTextField { (textField) in
            textField.placeholder = "Email"
        }
    
        alertController.addAction(confirmAction)
        alertController.addAction(cancelAction)
    
        present(alertController, animated: true, completion: nil)
    }
    

提交回复
热议问题