Skip to content

Instantly share code, notes, and snippets.

@chrishulbert
Created July 9, 2011 22:08
Show Gist options
  • Select an option

  • Save chrishulbert/1073995 to your computer and use it in GitHub Desktop.

Select an option

Save chrishulbert/1073995 to your computer and use it in GitHub Desktop.
Trim whitespaces on all text fields in a view controller
// Trim them
for (UIView* v in self.view.subviews) {
if ([v isKindOfClass:[UITextField class]]) {
UITextField* tf = (id)v;
tf.text = [tf.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment