美文网首页iOS技术集合Swift编程
Swift UITextField输入到最大限值以后不能删除的解

Swift UITextField输入到最大限值以后不能删除的解

作者: swift_honor | 来源:发表于2019-05-15 16:39 被阅读22次

    话不多说,直接上代码 ,
    swift 版本 5.0

      func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
          
            if ((string.count > range.length) && 
                            (textField.text?.count ?? 0 + string.count - range.length > MAX_LENGHT)) {
                return false
            }
         
            return true
        }
    

    相关文章

      网友评论

        本文标题:Swift UITextField输入到最大限值以后不能删除的解

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