objective-C ... 语法,
-(instancetype)initWithTitle:(NSString *)title message:(NSString *)message cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...
{
self = [super init];
if (self) {
NSLog(@"%@",otherButtonTitles);
}
return self;
}
代码如上,如何拿到otherButtonTitles的列表
第十一只尾兽
9 years, 3 months ago