В настоящее время я использую
...otherButtonTitles:@"Hotel Laguna", @"Hotel Village", @"Hotel Torre", @"Hotel Baia", nil];
для создания UIActionSheet
.
Я хотел бы передать NSArray ... что-то вроде:
NSArray *names = [[NSArray alloc]
initWithObjects:@"Hotel Laguna", @"Hotel Village", @"Hotel Torre", @"Hotel Baia", nil];
...otherButtonTitles:names];
Возможно ли это как-нибудь?
Спасибо!