甲UIActionSheet被initalized用:獨立的NSArray到的NSString類型對象的列表
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil
otherButtonTitles:@"Button1", @"Button2", nil];
我試圖一個NSArray傳遞到「otherButtonTitles」消息。
我試着使用通過一個NSArray:
otherButtonTitles:[array]
但該消息期待NSString的列表。
我能想到的將NSArray分解爲一組NSStrings的唯一方法是使用componentsJoinedByString,但它給了我一個逗號分隔的列表,它是一個NSString。
一個正確的方向點將不勝感激。
哇......好問題!也許使用NSInvocation這可能以某種方式? – 2009-06-20 03:09:35