Skip to content

Instantly share code, notes, and snippets.

@polarity
Created August 30, 2012 13:26
Show Gist options
  • Save polarity/3528482 to your computer and use it in GitHub Desktop.
Save polarity/3528482 to your computer and use it in GitHub Desktop.
UITextField: toLowerCase
// Wird bei jeder Notification (jeder Tastenanschlag)
-(void)type
{
// Text in Kleinbuchstaben umwandeln und wieder in den View schreiben
self.handle.text = [self.handle.text lowercaseString];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment