ios - 为什么我无法在 Swift 中验证登录按钮中的文本字段

标签 ios swift if-statement uitextfield

我已将委托(delegate)委托(delegate)给我的所有文本字段,但我无法验证文本字段最初是否为空。如果我只是将光标放在文本字段中,但没有任何文本,那么我可以检查,然后它说请输入电话号码为什么?

如果我没有将光标放在文本字段中,则访问直接转到其他部分,即使所有文本字段都是空的 这是我的代码,请在代码中帮助我。

func textFieldDidBeginEditing(_ textField: UITextField) {
    textField.text = ""
}
//MARK:- ButtonActions
@IBAction func loginButton(_ sender: Any) {

     if(userIdTextFielf.text?.isEmpty)!{
        AlertFun.ShowAlert(title: "", message: "Please enter PhoneNumber", in: self)
    }
    else if(passwordTextField.text?.isEmpty)!{
        AlertFun.ShowAlert(title: "", message: "Please enter Password", in: self)
    }
    else if(passwordTextField.text?.isEmpty)! && (userIdTextFielf.text?.isEmpty)! {
        AlertFun.ShowAlert(title: "", message: "Please enter PhoneNumber & Password", in: self)
    }
    else{
        logInService()
    }
    }

这是我的登录服务:

 //MARK:- Service part
func logInService(){

    let parameters = ["username":Int(userIdTextFielf.text ?? "") as Any,
                      "imei_number":"test2012@gmail.com",
                      "password":passwordTextField.text as Any,
                      "name":"name"]

    let url = URL(string: "https://dev.com/webservices/login")
    var req =  URLRequest(url: url!)
    req.httpMethod = "POST"
    req.addValue("application/json", forHTTPHeaderField: "Contet-Type")
    req.addValue("application/json", forHTTPHeaderField: "Accept")

    guard let httpBody = try? JSONSerialization.data(withJSONObject: parameters as Any, options: .prettyPrinted) else {return}
    req.httpBody = httpBody
    let session = URLSession.shared
    session.dataTask(with: req, completionHandler: {(data, response, error) in
        if response != nil {
            // print(response)
        }
        if let data = data {
            do{

                let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as! [String: Any]
                print("the json of loginnnnnn \(json)")
                var loginStatus = json["status"] as? String
                DispatchQueue.main.async {
                    if loginStatus == "Failed"
                    {
                       AlertFun.ShowAlert(title: "", message: "Invalid creadintials", in: self)
                    }
                    else{
                        self.Uid = json["id"] as? String
                        let emailL = json["user_email"] as? String
                        print("login uid \(self.Uid)")

                        KeychainWrapper.standard.set(emailL ?? "", forKey: "user_email")
                        let saveUserId: Bool = KeychainWrapper.standard.set(self.Uid!, forKey: "Uid")

                        let mainStoryBoard = UIStoryboard(name: "Main", bundle: nil)
                        let navigationController = mainStoryBoard.instantiateViewController(withIdentifier: "HomeNavigation")
                        let appDelagate = UIApplication.shared.delegate
                        appDelagate?.window??.rootViewController = navigationController
                    }
                }
            }catch{
                print("error")
            }
        }
    }).resume()
}

如果我点击没有电话号码和密码的登录按钮,它总是显示Invalid creadintials

请帮我写代码。

最佳答案

您似乎在文本字段的 text 属性中放置了一些占位符字符串。通常我们不会那样做。将占位符字符串放在文本字段的 placeholder 属性中,它将准确地执行您想要的操作,即如果为空则显示占位符文本,否则显示用户输入的内容。然后您就不需要那个 textFieldDidBeginEditing 实现,您简单的 isEmpty 检查就可以工作了。

如果您想使用 text 属性执行您自己的手动占位符过程,那么您必须更改验证逻辑,同时检查 isEmpty 和它不是等于您的占位符文本。

例如,您可以使用实用程序方法来确定用户实际输入的内容(即,如果它等于默认文本字符串,则返回零长度字符串):

@IBAction func didTapLogin(_ sender: Any) {
    let userid = actualInput(for: useridTextField, defaultText: "Enter userid")
    let password = actualInput(for: passwordTextField, defaultText: "Enter password")

    switch (userid.isEmpty, password.isEmpty) {
    case (true, true):
        AlertFun.showAlert(title: "", message: "Please enter PhoneNumber & Password", in: self)

    case (true, _):
        AlertFun.showAlert(title: "", message: "Please enter PhoneNumber", in: self)

    case (_, true):
        AlertFun.showAlert(title: "", message: "Please enter Password", in: self)

    default:
        logInService()
    }
}

func actualInput(for textField: UITextField, defaultText: String) -> String {
    let text = textField.text ?? ""
    if text == defaultText {
        return ""
    } else {
        return text.trimmingCharacters(in: .whitespacesAndNewlines)
    }
}

就个人而言,即使您在 text 技巧中使用自定义占位符,我仍可能将占位符字符串存储在 placeholder 属性中以保存它。我也可以将它移动到 UITextField 的扩展:

extension UITextField {
    var userInput: String? { text == placeholder ? "" : text }
}

然后你可以这样做:

class ViewController: UIViewController {

    @IBOutlet weak var imageView: UIImageView!

    @IBOutlet weak var useridTextField: UITextField!
    @IBOutlet weak var passwordTextField: UITextField!

    override func viewDidLoad() {
        super.viewDidLoad()

        useridTextField.placeholder = "Please enter userid"
        passwordTextField.placeholder = "Please enter password"

        useridTextField.text = useridTextField.placeholder
        passwordTextField.text = passwordTextField.placeholder
    }

    @IBAction func didTapLogin(_ sender: Any) {
        let userid = useridTextField.userInput ?? ""
        let password = passwordTextField.userInput ?? ""

        switch (userid.isEmpty, password.isEmpty) {
        case (true, true):
            AlertFun.showAlert(title: "", message: "Please enter PhoneNumber & Password", in: self)

        case (true, _):
            AlertFun.showAlert(title: "", message: "Please enter PhoneNumber", in: self)

        case (_, true):
            AlertFun.showAlert(title: "", message: "Please enter Password", in: self)

        default:
            logInService()
        }
    }

    func logInService() { ... }
}

extension ViewController: UITextFieldDelegate {
    func textFieldDidBeginEditing(_ textField: UITextField) {
        if textField.text == textField.placeholder {
            textField.text = ""
        }
    }

    func textFieldDidEndEditing(_ textField: UITextField, reason: UITextField.DidEndEditingReason) {
        if textField.text?.isEmpty ?? true {
            textField.text = textField.placeholder
        }
    }
}

这样,您就可以避免在代码中散布字符串文字,即使用户点击该字段(您删除文本的地方),他们现在也可以看到占位符字符串,因此他们知道要输入什么,等等。

关于ios - 为什么我无法在 Swift 中验证登录按钮中的文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58767081/

相关文章:

ios - 如何在iOS中播放多个html5音频文件?

ios - 如果本地文档中没有图片,则下载图片

ios - 如何仅提供回调函数或 block 而不是创建符合 UIPickerViewDelegate 的对象?

ios - 如何在 UIImageView 中创建多色边框?

ios - 在边界框内查询经/纬度的数据库/文件?谷歌地图

ios - coreData Fetch 中的 NSInternalInconsistencyException

ios - 填充占位符文本 ios

java - java中的多字扫描仪输入?

linux - 带有 3 个检查点的 If 语句

c++ - 复合 if 语句使用 ? : operator in C