1

我知道这在其他编程语言中是可能的。假设我们有以下安排:

- (void) myMethod:(NSString*)variables, ... {
    // Handle business here.
}

- (void) anotherMethod:(NSString*)variables, ... {
    // We want to pass these variable arguments for handling
    [self myMethod:variables, ...]; // Do not pass GO
}

// Start the party:
[self anotherMethod:@"arg1", @"arg2", @"arg3", @"arg4", nil];

让这个在 ObjC 中工作的诀窍是什么?

4

1 回答 1

0

是的。在 objective-c 中是可能的。你可以在这里找到很好的文章。

于 2012-06-07T04:59:08.630 回答