как отклонить лист действий - PullRequest
11 голосов
/ 20 апреля 2011

Я использовал этот код для отображения uipicker в uiactionsheet, но когда я нажимаю кнопку закрытия, я хочу удалить лист действий из вида.так какой должен быть код для удаления вида формы actionSheet.

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:nil cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil];

[actionSheet setActionSheetStyle:UIActionSheetStyleBlackTranslucent];

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

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];
[closeButton release];

[actionSheet showInView:self.view];//[UIApplication mainWindow]];

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

Ответы [ 3 ]

11 голосов
/ 20 апреля 2011

Все, что вам нужно сделать, это закрыть ActionSheet, что вы можете сделать с dismissWithClickedButtonIndex:animated:

7 голосов
/ 25 мая 2013

Добавление этого метода сработало для меня:

    -(void) dismissActionSheet:(id)sender {
        UIActionSheet *actionSheet =  (UIActionSheet *)[(UIView *)sender superview];
        [actionSheet dismissWithClickedButtonIndex:0 animated:YES];
    }
4 голосов
/ 20 апреля 2011

проблема с областью действия листа.

используется [actionSheet dismissWithClickedButtonIndex:0 animated:YES];

...