how can fixed maximum character of a text field in cocos2d ?
|
1
|
|
|
|
|
|
To fix the maximum number of characters in a UITextField, you could do implement the UITextField Delegate Method
|
||||||||
|
|
|
The example above only works if the user is editing at the end of the text field (last character). For checking against the actual length (regardless of where the user is editing- cursor position) of the input text use this:
|
||
|
|
|
|
To enable user to use backspace, you should use code like this (range.length is only zero when you push backspace):
|
||
|
|
