"Do it as usual" is generally done by invoking super's implementation.
However, in a category on NSArray, super's implementation is NSObject,
which is not what you want. This is a problem with categories, in that
it's impossible to call the original implementation of a method you
replace.
To get around this, either investigate using poseAsClass: or method
swizzling (http://www.cocoadev.com/index.pl?MethodSwizzling). Both of
these techniques allow you to call the old implementation in your
override.
Mike
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden