Hey! I was wondering if there was any way to check if the first letter of a string was capital or not in an NSString. Something similar to:
if ([[string substringToIndex:1] isCapitalLetter]) {
// CODE
}
--or--
if ([self isCapitalLetter:[string substringToIndex:1]]) {
// CODE
}