Max length UITextField

后端 未结 18 1847
一个人的身影
一个人的身影 2020-11-30 17:42

When I\'ve tried How to you set the maximum number of characters that can be entered into a UITextField using swift?, I saw that if I use all 10 characters, I can\'t erase t

18条回答
  •  悲&欢浪女
    2020-11-30 18:16

    func checkMaxLength(textField: UITextField!, maxLength: Int) {
            if (textField.text!.characters.count > maxLength) {
                textField.deleteBackward()
            }
    }
    

    a small change for IOS 9

提交回复
热议问题