Created
July 19, 2012 05:58
-
-
Save leepfrog/3141061 to your computer and use it in GitHub Desktop.
downcase only first letter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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