Skip to content

Instantly share code, notes, and snippets.

@sumardi
Created August 27, 2011 14:44
Show Gist options
  • Save sumardi/1175468 to your computer and use it in GitHub Desktop.
Save sumardi/1175468 to your computer and use it in GitHub Desktop.
iPhoneDev - Limit the size of text field.
// Text field delegates
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if ([[textField text] length] + [string length] - range.length > MAX_LENGTH) {
return NO;
} else {
return YES;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment