I'm trying to extend a class that has a variadic method such as:
- (void)someMethod:(id)arguments, ... ;
and in the subclass override it by calling the original method like:
- (void)someMethod:(id)arguments, ... {
[super someMethod:arguments, ...];
// override implementation
...
}
but this doesn't work. Anyone know how to work this? Thanks.