Я реализую представление предупреждений после того, как пользователь нажимает кнопку «destructButton» на листе действий.Фрагмент кода, как показано ниже:
-(void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
{
if (buttonIndex != actionSheet.cancelButtonIndex)
{
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Something happened!"
message:nil
delegate:nil
cancelButtonTitle:@"Phew!"
otherButtonTitles:nil];
}
[alert show];
[alert release];
}
Я уже включил протокол UIActionSheetDelegate в мой файл .h
@interface Control_FunViewController : UIViewController <UIActionSheetDelegate> {
UITextField *nameField;
UITextField *numberField;
UILabel *sliderLabel;
UISwitch *leftSwitch;
UISwitch *rightSwitch;
UIButton *doSomethingButton;
}
Но когда я нажимаю кнопку destructButton в таблице действий, ничего не происходит.Я что-то здесь упускаю?
Спасибо
Жен