Skip to content

Instantly share code, notes, and snippets.

@alvareztech
Created January 15, 2014 18:01
Show Gist options
  • Save alvareztech/8441107 to your computer and use it in GitHub Desktop.
Save alvareztech/8441107 to your computer and use it in GitHub Desktop.
iOS: NSString's methods.
// Trim
NSString *string = @" this text has spaces before and after ";
NSString *trimmedString = [string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment