我知道addButtonWithTitle函数,但我不想创建新按钮,只是为了填充UIActionSheet中的Title区域。
如果可能,是否可以使用UIAlertView?
答案 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的类似方法。