-(instancetype)initWithTitle:(NSString *)title message:(NSString *)message cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...
{
self = [super init];
if (self) {
NSLog(@"%@",otherButtonTitles);
}
return self;
}
代码如上,如何拿到otherButtonTitles的列表
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
解决了
google 可变参数