Как отклонить UIActionSheet с помощью кнопки закрытия и избежать сбоев? - PullRequest
6 голосов
/ 05 декабря 2011

Я прочитал в другом посте ( как отклонить лист действий ), который я могу использовать

[actionSheet dismissWithClickedButtonIndex:0 animated:YES];

, чтобы закрыть список изменений кнопкой закрытия, как определено в:

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

[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];

CGRect pickerFrame = CGRectMake(0, 40, 0, 0);

UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:pickerFrame];
pickerView.showsSelectionIndicator = YES;
pickerView.dataSource = self;
pickerView.delegate = self;


[actionSheet addSubview:pickerView];
[pickerView release];

UISegmentedControl *closeButton = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObject:@"Close"]];
closeButton.momentary = YES; 
closeButton.frame = CGRectMake(260, 7.0f, 50.0f, 30.0f);
closeButton.segmentedControlStyle = UISegmentedControlStyleBar;
closeButton.tintColor = [UIColor blackColor];
[closeButton addTarget:self action:@selector(dismissActionSheet:) forControlEvents:UIControlEventValueChanged];
[actionSheet addSubview:closeButton];


[actionSheet dismissWithClickedButtonIndex:0 animated:YES];


[closeButton release];


[actionSheet showInView:[[UIApplication sharedApplication] keyWindow]];

[actionSheet setBounds:CGRectMake(0, 0, 320, 485)];

Однако я не уверен, где разместить эту строку, предполагая, что это решит мою проблему:

[actionSheet dismissWithClickedButtonIndex:0 animated:YES]; 

Кроме того, приложение вылетает, когда я нажимаю кнопку закрытия, с сообщением об ошибке «SIGBRT СООБЩЕНИЯ ОБ ОШИБКЕ ПОЛУЧЕННОЙ ПРОГРАММЫ». Я предполагаю, что мои две проблемы связаны. Любая помощь там?

1 Ответ

10 голосов
/ 05 декабря 2011

Просто внедрите dismissActionSheet и поместите туда свое сообщение об отклонении.

Метод dismissActionSheet будет выглядеть примерно так:

-(void)dismissActionSheet {
   [sheet dismissWithClickedButtonIndex:0 animated:YES];
}
...