我已经设置了4个UITextFields和一个UIButton。如果用户提供了用户名、电子邮件、密码等数据,则这将作为注册页工作。因此,只有当所有UItextfields不为空时,才会启用注册按钮,以便用户可以点击内部并转到下一个UIView。一切都很好,但我注意到一个小虫子,它正在进入我的最后一根神经XD。
如果用户用所需的所有信息填充所有UItextFields,但由于某种原因,请退格到其中一个字段中,直到该字段为空,然后轻触register按钮,则即使存在空字段,注册也将成功。拜托,我已经花了将近一周的时间想办法解决这个问题了。
我建立威伯顿的方式:

private let registerButton : UIButton = {
    let button = UIButton(type: .system)
    button.translatesAutoresizingMaskIntoConstraints = false
    button.setTitle("Registrar", for: .normal)
    button.backgroundColor = UIColor.blue
    button.layer.cornerRadius = 5
    button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14)
    button.setTitleColor(.black, for: .normal)
    button.addTarget(self, action: #selector(handleSignUp), for: .touchUpInside)
    button.isEnabled = true
    return button
}()

负责验证用户是否已填写所有字段的块代码。
@objc private func handleSignUp () {
    let userName = userNameTexField.text
    let email = emailTextField.text
    let password = passwordTextField.text
    let confirmPassword = confirmPasswordField.text
    let birthDate = birthDateTextField.text

    if userName?.isEmpty ?? true && email?.isEmpty ?? true && password?.isEmpty ?? true && confirmPassword?.isEmpty ?? true && birthDate?.isEmpty ?? true {
        let alert = UIAlertController(title: nil, message: "Youmust fill all the fields with all the required infotmation to signup", preferredStyle: .alert)
        let okAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
        alert.addAction(okAction)
        present(alert, animated: true, completion: nil)
    }else {
        emailTextField.isUserInteractionEnabled = false
        passwordTextField.isUserInteractionEnabled = false
        confirmPasswordField.isUserInteractionEnabled = false
        birthDateTextField.isUserInteractionEnabled = false
        performSegue(withIdentifier: "goToHome", sender: nil)
        print("LogIn succesful!")
        print (userAge)
    }
}

我希望修正这个错误,所以当用户出于某种原因,删除其中一个字段时,警报会再次弹出,告诉用户填充所有要注册的填充。

最佳答案

您要求所有字段都为空才能触发警报。你需要知道其中一个是空的。尝试将&&更改为||

if userName?.isEmpty ?? true || email?.isEmpty ?? true || password?.isEmpty ?? true || confirmPassword?.isEmpty ?? true || birthDate?.isEmpty ?? true

07-26 05:26