Hi, I'm working with cocoa on the iPhone and I'm looking for some method like:
NSString *s = @"Hello";
[s isStringStartsWithUpperCaseCharacter]
-(BOOL) isStringStartsWithUpperCaseCharacter;
The first letter of the string may be non ASCII letter like: Á, Ç, Ê...
Is there some method which can helps me? I saw in the documentation that there are some methods to convert the string to uppercase and to lowercase but there are no methods for ask if the string is lowercased or uppercased. Thank you