Skip to content

Instantly share code, notes, and snippets.

- (void) startForwarding:(id)sender {
for (NSInvocation *invocation in self.invocations) {
[invocation setTarget:sender];
[invocation invoke];
}
// We now need to also set the properties of the superclass
Class sc = [sender superclass];
while (sc != [NSObject class]) {