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

后端 未结 3 619
一个人的身影
一个人的身影 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-12 23:55

    Check this out:

    let alertController = UIAlertController(title: "Email?", message: "Please input your email:", preferredStyle: .alert)
    
    let confirmAction = UIAlertAction(title: "Confirm", style: .default) { (_) in
      guard let textFields = alertController.textFields,
        textFields.count > 0 else {
          // Could not find textfield
          return
      }
    
      let field = textFields[0]
      // store your data
      UserDefaults.standard.set(field.text, forKey: "userEmail")
      UserDefaults.standard.synchronize()
    }
    
    let cancelAction = UIAlertAction(title: "Cancel", style: .cancel) { (_) in }
    
    alertController.addTextField { (textField) in
      textField.placeholder = "Email"
    }
    
    alertController.addAction(confirmAction)
    alertController.addAction(cancelAction)
    
    self.present(alertController, animated: true, completion: nil)
    
    0 讨论(0)
  • 2021-02-12 23:59

    In swift 3

    let alertController = UIAlertController(title: "SecureStyle", message: "SecureStyle AlertView.", preferredStyle: UIAlertControllerStyle.Alert)
    alertController.addTextFieldWithConfigurationHandler { (textField : UITextField) -> Void in
                textField.secureTextEntry = true
                textField.placeholder = "Password"
            }
    let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel) { (result : UIAlertAction) -> Void in
                print("Cancel")
            }
    let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { (result : UIAlertAction) -> Void in
                print(alertController.textFields?.first?.text)
            }
    alertController.addAction(cancelAction)
    alertController.addAction(okAction)
    self.presentViewController(alertController, animated: true, completion: nil)
    
    0 讨论(0)
  • 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)
    }
    
    0 讨论(0)
提交回复
热议问题