Skip to content

Instantly share code, notes, and snippets.

@leepfrog
Created July 19, 2012 05:58
Show Gist options
  • Save leepfrog/3141061 to your computer and use it in GitHub Desktop.
Save leepfrog/3141061 to your computer and use it in GitHub Desktop.
downcase only first letter
// given a string SomeCrazyString => someCrazyStringID
NSString *keyName = [[NSString alloc] initWithFormat:@"%@%@ID", [[modelKey lowercaseString] substringToIndex:1], [modelKey substringFromIndex:1]];
DDLogInfo(@"primaryKey[%@]: %@", modelKey, keyName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment