Skip to content

Instantly share code, notes, and snippets.

@techbelly
Created November 2, 2011 12:45
Show Gist options
  • Save techbelly/1333528 to your computer and use it in GitHub Desktop.
Save techbelly/1333528 to your computer and use it in GitHub Desktop.
- (NSString *)stringByCapitalisingFirstLetter:(NSString *)string
{
return [string stringByReplacingCharactersInRange:NSMakeRange(0,1) withString:[[string substringToIndex:1] uppercaseString]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment