У меня есть этот код:
UIActionSheet *actionSheet = [[[UIActionSheet alloc]
initWithTitle:@"Illustrations"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles: @"ABC", @"XYZ",
nil] autorelease];
UIImage *image = // whatever, snip
if (image != nil)
{
[actionSheet addButtonWithTitle:@"LMNOP"];
}
и он отлично добавляет мою кнопку LMNOP условно.
... ПОСЛЕ кнопки отмены.
Как я могу построить свой лист действий с помощью условной кнопки? К сожалению, я не могу сделать:
UIActionSheet *actionSheet = [[[UIActionSheet alloc]
// ... etc.
otherButtonTitles: someMutableArray
// ... etc.
потому что это, безусловно, поможет.
Есть идеи?
Спасибо!