When subclassing in objective-c, how can I forward a call to the superclass in the case of a variadic method. By what should I replace the ??? below to send all the objects I got?
- (void) appendObjects:(id) firstObject, ...
{
[super appendObjects: ???];
}