Categories question:
I'd like to place a category on NSURL that, among doing other things, overrides the query method to be able to provide a query string from a URL that is not RFC 1808 compliant. Is it legal to do something like this in my category:
- (NSString *)query //real NSURL method
{
if (stringIsRFC1808) //want to get the default implementation
return [super query];
else
return somethingElse; //want to get my custom implementation
}
thanks