gpt4 book ai didi

iphone - 如何将变量参数传递给另一个方法?

转载 作者:IT老高 更新时间:2023-10-28 11:45:02 33 4
gpt4 key购买 nike

我用谷歌搜索并知道如何使用变量参数。但我想将我的变量参数传递给另一个方法。我收到错误。该怎么做?

-(void) aMethod:(NSString *) a, ... {
[self anotherMethod:a];
// i m doing this but getting error. how to pass complete vararg to anotherMethod
}

最佳答案

AFAIK ObjectiveC(就像 C 和 C++ 一样)没有为您提供允许您直接想到的语法。

通常的解决方法是创建一个函数的两个版本。一个可以直接使用 ... 调用,另一个由其他函数调用,以 va_list 的形式传递参数。

..[obj aMethod:@"test this %d parameter", 1337);[obj anotherMethod:@"test that %d parameter", 666);..-(void) aMethod:(NSString *)a, ... {    va_list ap;    va_start(ap, a);    [self anotherMethod:a withParameters:ap];     va_end(ap);}-(void) anotherMethod:(NSString *)a, ...{    va_list ap;    va_start(ap, a);    [self anotherMethod:a withParameters:ap];     va_end(ap);}-(void) anotherMethod:(NSString *)a withParameters:(va_list)valist {    NSLog([[[NSString alloc] initWithFormat:a arguments:valist] autorelease]);}

关于iphone - 如何将变量参数传递给另一个方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2391780/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com