vote up 0 vote down star
1

how can fixed maximum character of a text field in cocos2d ?

flag

22% accept rate

3 Answers

vote up 2 vote down check

To fix the maximum number of characters in a UITextField, you could do implement the UITextField Delegate Method textField:shouldChangeCharactersInRange to return false if the user tries to edit the string past the fixed length.

//Assume myTextField is a UITextField
myTextField.delegate = self;

//implement this UITextFiledDelegate Protocol method in the same class
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    if ([textField.text length] > kMaxTextFieldStringLength)
        return NO;
    else
        return YES; 
}
link|flag
Its working .... thanks for ur answer..... – Nahid Jan 23 at 9:11
Does it still work if I input the max length and then I position myself at the beginning of the text field and I continue typing? – nicktmro Jul 17 at 4:28
I just tested and it fails if the user resumes editing at the beginning of the text field. Rather than testing if (range.location > kMaxTextFieldStringLength) I would suggest you do a: if ([textField.text length] > kMaxTextFieldStringLength) On another note the range is 0 based. – nicktmro Jul 17 at 4:34
Thanks. I changed it. – Brad Smith Jul 17 at 5:10
vote up 0 vote down

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:

myTextField.delegate = self;

//implement this UITextFiledDelegate Protocol method in the same class
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    if (range.location > kMaxTextFieldStringLength)
        return NO;
    else
        return YES; 
}
link|flag
vote up 0 vote down

To enable user to use backspace, you should use code like this (range.length is only zero when you push backspace):


myTextField.delegate = self;

//implement this UITextFiledDelegate Protocol method in the same class - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string { if (textField.text.length >= 10 && range.length == 0) return NO; return YES; }

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.