Использовать NSArray, чтобы указать другие ButtonTitles?

Конструктор UIAlertSheet принимает параметр otherButtonTitles в качестве списка varg. Вместо этого я хотел бы указать другие заголовки кнопок из NSArray. Это возможно?

т.е. я должен сделать это:

id alert = [[UIActionSheet alloc] initWithTitle: titleString
                                  delegate: self
                                  cancelButtonTitle: cancelString
                                  destructiveButtonTitle: nil
                                  otherButtonTitles: button1Title, button2Title, nil];

Но так как я генерирую список доступных кнопок во время выполнения, я действительно хочу что-то вроде этого:

id alert = [[UIActionSheet alloc] initWithTitle: titleString
                                       delegate: self
                              cancelButtonTitle: cancelString
                         destructiveButtonTitle: nil
                              otherButtonTitles: otherButtonTitles];

Прямо сейчас я думаю, что мне нужно сделать отдельный звонок initWithTitle: за 1 предмет, 2 предмета и 3 предмета. Как это:

if ( [titles count] == 1 ) {
     alert = [[UIActionSheet alloc] initWithTitle: titleString
                                         delegate: self
                                cancelButtonTitle: cancelString
                           destructiveButtonTitle: nil
                                otherButtonTitles: [titles objectAtIndex: 0], nil];
} else if ( [titles count] == 2) {
     alert = [[UIActionSheet alloc] initWithTitle: titleString
                                         delegate: self
                                cancelButtonTitle: cancelString
                           destructiveButtonTitle: nil
                                otherButtonTitles: [titles objectAtIndex: 0], [titles objectAtIndex: 1],  nil];
} else {
    // and so on
}

Это много повторяющегося кода, но на самом деле это может быть разумно, так как у меня не более трех кнопок. Как я могу избежать этого?

6 ответов

Решение

Это год, но решение довольно простое... сделайте так, как предложил @Simon, но не указывайте заголовок кнопки отмены, поэтому:

UIActionSheet *alert = [[UIActionSheet alloc] initWithTitle: titleString
                              delegate: self
                              cancelButtonTitle: nil
                              destructiveButtonTitle: nil
                              otherButtonTitles: nil];

Но после добавления ваших обычных кнопок добавьте кнопку отмены, например:

for( NSString *title in titles)  {
    [alert addButtonWithTitle:title]; 
}

[alert addButtonWithTitle:cancelString];

Теперь ключевым шагом является указать, какая кнопка является кнопкой отмены, например:

alert.cancelButtonIndex = [titles count];

Мы делаем [titles count] и не [titles count] - 1 потому что мы добавляем кнопку отмены как дополнительную из списка кнопок в titles,

Теперь вы также указываете, какой кнопкой вы хотите быть деструктивной кнопкой (то есть красной кнопкой), указав destructiveButtonIndex (обычно это будет [titles count] - 1 кнопка). Кроме того, если вы оставите кнопку отмены последней, iOS добавит хороший интервал между другими кнопками и кнопкой отмены.

Все это совместимо с iOS 2.0, так что наслаждайтесь.

Вместо добавления кнопок при инициализации UIActionSheet, попробуйте добавить их с помощью метода addButtonWithTitle, используя цикл for, который проходит через NSArray.

UIActionSheet *alert = [[UIActionSheet alloc] initWithTitle: titleString
                              delegate: self
                              cancelButtonTitle: cancelString
                              destructiveButtonTitle: nil
                              otherButtonTitles: nil];

for( NSString *title in titles)  
    [alert addButtonWithTitle:title]; 

addButtonWithTitle: возвращает индекс добавленной кнопки. Установите для cancelButtonTitle значение nil в методе init, и после добавления дополнительных кнопок выполните следующее:

actionSheet.cancelButtonIndex = [actionSheet addButtonWithTitle:@"Cancel"];
- (void)showActionSheetWithButtons:(NSArray *)buttons withTitle:(NSString *)title {

    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle: title 
                                                             delegate: self
                                                    cancelButtonTitle: nil 
                                               destructiveButtonTitle: nil 
                                                    otherButtonTitles: nil];

    for (NSString *title in buttons) {
        [actionSheet addButtonWithTitle: title];
    }

    [actionSheet addButtonWithTitle: @"Cancel"];
    [actionSheet setCancelButtonIndex: [buttons count]];
    [actionSheet showInView:self.view];
}

Вы можете добавить кнопку отмены и установить ее так:

[actionSheet setCancelButtonIndex: [actionSheet addButtonWithTitle: @"Cancel"]];

Я знаю, что это старый пост, но в случае, если кто-то еще, как я, пытается выяснить это.

(На это ответил @kokemomuke. Это в основном более подробное объяснение. Также на основе @Ephraim и @Simon)

Оказывается, последняя запись addButtonWithTitle: должна быть Cancel кнопка. Я бы использовал:

// All titles EXCLUDING Cancel button
for( NSString *title in titles)  
    [sheet addButtonWithTitle:title];


// The next two line MUST be set correctly: 
// 1. Cancel button must be added as the last entry
// 2. Index of the Cancel button must be set to the last entry

[sheet addButtonWithTitle:@"Cancel"];

sheet.cancelButtonIndex = titles.count - 1;
Другие вопросы по тегам