pattern.firstMatch 是获取错误:表达式类型 '@lvalue String?' 在没有更多上下文的情况下是模棱两可的

iosbegindevel

我是第一个 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

提前致谢

什_汗

您需要firstMatchif预期的值进行比较A BOOL

} else if pattern.firstMatch(in: "\(walletNameField.text!)", options: NSRegularExpression.MatchingOptions.reportCompletion,range: NSRange(location:0,length:walletNameField.text!.count)) != nil  {  

}

或使用 if let

} else if let first =  pattern.firstMatch(in: "\(walletNameField.text!)", options: NSRegularExpression.MatchingOptions.reportCompletion,range: NSRange(location:0,length:walletNameField.text!.count))  {  
   print(first)
}

升级touchesBegan你需要在这里使用最新的语法

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    self.view.endEditing(true)
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章