话不多说,直接上代码 ,
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
}
网友评论