【发布时间】:2019-09-07 20:53:29
【问题描述】:
我是第一个 iPhone 开发者。我想要做的是区分文本字段中的特殊字符。所以我尝试使用正则表达式。但它向我显示了错误。
@IBOutlet weak var walletNameField: UITextField!
@IBAction func nextButtonFuc(_ sender: UIButton) {
let pattern = try! NSRegularExpression(pattern: "^[a-zA-Z0-9가-힣ㄱ-하-ㅣ\\s]$", options: .caseInsensitive)
if walletNameField.text!.isEmpty {
callAlert("test")
} else if walletPasswordField.text!.isEmpty {
callAlert("test")
} else if confirmField.text!.isEmpty {
callAlert("test")
} else if walletPasswordField.text != confirmField.text {
callAlert("test")
} else if walletNameField.text!.count > 10 {
callAlert("test")
} else if walletPasswordField.text!.count < 8 ||
walletPasswordField.text!.count >= 20 {
callAlert("test")
} else if pattern.firstMatch(in: "\(walletNameField.text!)", options: NSRegularExpression.MatchingOptions.reportCompletion, range: NSMakeRange(0, walletNameField.text!.count)) { //get Error Expression type '@lvalue String?' is ambiguous without more context
callAlert("test")
}
}
错误是
表达式类型'@lvalue String?'没有更多上下文是模棱两可的
我做错了什么?我觉得这个问题很难解决。
当我触摸任何地方时,我都会尝试隐藏我的键盘。但是,函数本身是一个错误。为什么会出错?
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
self.view.endEditing(true)
}
// Error is Declaration 'touchesBegan(touches:withEvent:)' has different argument labels from any potential overrides
提前致谢
【问题讨论】:
-
firstMatch不返回Bool。
标签: ios swift pattern-matching