Objective C UIActionSheet是否可以用NSArray填充Title?

时间:2011-10-10 13:32:11

标签: objective-c nsarray uiactionsheet

我知道addButtonWithTitle函数,但我不想创建新按钮,只是为了填充UIActionSheet中的Title区域。

如果可能,是否可以使用UIAlertView?

1 个答案:

答案 0 :(得分:1)

    NSMutableString *mstr = [[NSMutableString alloc]init];
    for (NSString *s in array)
        [mstr appendString:s];
    UIActionSheet*actionSheet = [[UIActionSheet alloc] initWithTitle:mstr ......
    [actionSheet showInView:view];
    [actionSheet release];

    [mstr release];

这假设你的数组包含字符串。 UIAlertView的类似方法。