为啥我无法在 Swift 的登录按钮中验证 textFields
Posted
技术标签:
【中文标题】为啥我无法在 Swift 的登录按钮中验证 textFields【英文标题】:Why I'm unable to validate textFields in login Button in Swift为什么我无法在 Swift 的登录按钮中验证 textFields 【发布时间】:2019-11-08 12:58:53 【问题描述】:我已将委托给我的所有文本字段,但我无法验证文本字段最初是否为空。如果我只是将光标放在文本字段中,但没有任何文本,那么我可以检查,然后它说请输入电话号码为什么?
如果我没有将光标放在文本字段中,则直接访问其他部分,即使所有文本字段都是空的 这是我的代码,请在代码中帮助我。
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
请帮我写代码。
【问题讨论】:
检查 userIdTextFielf 有没有参考? @SGDev,不,我已经更新了我的帖子,请看一下,请在代码中帮助我 "else if(passwordTextField.text?.isEmpty)! && (userIdTextFielf.text?.isEmpty)!"永远不会运行,因为如果其中一个为空,它们将被上面的 if 语句捕获 诊断此问题的简单方法是在您点击else
语句时打印用户名和密码并查看它们是什么。它们显然不是空的。那么它们是什么?空间?一些占位符文本?确保那里没有默认值。确保有人没有不小心将某些占位符文本作为 text
而不是 placeholder
。
@Rob,我在文本字段中给出了文本,输入用户 ID .. 像占位符文本.. 这就是为什么 (userIdTextFielf.text?.isEmpty)!
不考虑为空.. 现在如何验证这是我的问题
【参考方案1】:
您似乎在文本字段的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
这样,您可以避免在代码中添加字符串文字,即使用户点击字段(您删除文本的位置),他们现在也可以看到占位符字符串,因此他们知道要输入什么等。
【讨论】:
是的,你是绝对正确的,如果它是占位符字符串,那么我可以验证,但我需要在文本字段中的彩色文本......这就是为什么这个问题,请告诉我如何验证跨度> @swift 见上面的例子。【参考方案2】:使用isEmpty
,而不是与“”相等
【讨论】:
【参考方案3】:你可以试试这个或最重要的解决方案
if userIdTextFielf.text?.isEmptyOrWhitespace() ?? true
AlertFun.ShowAlert(title: "", message: "Please enter PhoneNumber", in: self)
return
else if passwordTextField.text?.isEmptyOrWhitespace() ?? true
AlertFun.ShowAlert(title: "", message: "Please enter Password", in: self)
return
extension String
func isEmptyOrWhitespace() -> Bool
if(self.isEmpty)
return true
return (self.trimmingCharacters(in: NSCharacterSet.whitespaces) == "")
【讨论】:
使用guard关键字代替if条件。 嘿,我刚刚注意到我在文本字段中将用户名和密码作为文本而不是占位符文本提供,这就是我无法验证的原因.. 如何将用户ID作为文本字段中的空文本并进行验证以上是关于为啥我无法在 Swift 的登录按钮中验证 textFields的主要内容,如果未能解决你的问题,请参考以下文章
FacebookSDK(4.1.x) 自定义登录 UI 按钮 - Swift(1.2)