UIActionSheet 初始化为:
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil
otherButtonTitles:@"Button1", @"Button2", nil];
我正在尝试将 NSArray 传递到“otherButtonTitles”消息中。
我尝试使用以下方法传递 NSArray:
otherButtonTitles:[array]
但该消息需要一个 NSStrings 列表。
我能想到的将 NSArray 分解为一组 NSString 的唯一方法是使用 componentsJoinedByString,但它给了我一个逗号分隔的列表,它是一个 NSString。
正确方向的一点将不胜感激。