Re: NSString categories
Re: NSString categories
- Subject: Re: NSString categories
- From: Marten van Gelderen <email@hidden>
- Date: Thu, 19 Feb 2004 13:40:52 +0100
Allan,
Thanks a lot, I did it right away and it worked (of course). (You do
not want to know my current implementation of isCapitalizedString,
which uses old C isupper and islower on [string characterAtIndex:...],
Ugh!)
On 19 Feb 2004, at 1:21 PM, Allan Odgaard wrote:
You need to do something like:
- (BOOL)isCapitalizedString
{
return [self isEqualToString:[self capitalizedString]];
}
--
Groeten, Marten
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.