美文网首页
Swift中TextField保留小数点后两位小数

Swift中TextField保留小数点后两位小数

作者: 向日葵的夏天_summer | 来源:发表于2019-06-13 19:17 被阅读0次
  func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
        let text = textField.text ?? ""
        
        if text == "0." && string.count == 0 {
            textField.text = ""
            return false
        }
        
        let toBeString = (text as NSString).replacingCharacters(in: range, with: string)
        
        if string == "." && text.count == 0 {
            textField.text = "0."
            return false
        }
        
        if string == "." && text.contains(".") {
            return false
        }
        
        if text.contains(".") && toBeString.components(separatedBy: ".").count > 1 && toBeString.components(separatedBy: ".").last?.count ?? 0 > 2 {
            return false
        }
        return true
    }

相关文章

网友评论

      本文标题:Swift中TextField保留小数点后两位小数

      本文链接:https://www.haomeiwen.com/subject/qodefctx.html