vote up 4 vote down star

A UIActionSheet is initalized with:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil 
otherButtonTitles:@"Button1", @"Button2", nil];

I am trying to pass an NSArray into the "otherButtonTitles" message.

I tried to pass an NSArray using:

otherButtonTitles:[array]

but the message is expecting a list of NSStrings.

The only way I can think of breaking an NSArray into a set of NSStrings is to by using componentsJoinedByString but it gives me a comma separated list that is a single NSString.

A point in the right direction would be appreciated.

flag
Wow... good question! Maybe using NSInvocation this is possible somehow? – Ben Gotow Jun 20 at 3:09

2 Answers

vote up 4 vote down check

That method takes varargs. There's not a really easy way to make the conversion your describing, and it definitely isn't worth the trouble to try in this case. This is just a convenience method.

Just use -init and configure everything with the accessors (-setDelegate:, -addButtonWithTitle:, -setCancelButtonIndex:, etc.)

link|flag
vote up 2 vote down

Unfortunately, you can't do this in Objective-C.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.