0

optionsSheet を表示したときにキーボードを非表示にすることに問題があります。

コードのどこに問題がありますか?

- (void)optionsSheet2{

    if(optionsSheet2) {
        [optionsSheet2 dismissWithClickedButtonIndex:-1 animated:YES];
        optionsSheet2 = nil;
    }

    optionsSheet2 = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) destructiveButtonTitle:nil otherButtonTitles:NSLocalizedString(@"Delete", nil),  NSLocalizedString(@"Delete all", nil), nil];

    [optionsSheet2 showInView:self.parentViewController.view];
}

- (void)dismissKeyboard {
    [_uiSearchBar resignFirstResponder];
    [_uiSearchBar setShowsCancelButton:NO animated:YES];
    [_uiSearchBar setHidden:true];
    [self.view endEditing:YES]; 
}
4

2 に答える 2

1

次のようにコードを変更します。

 - (void)optionsSheet2
    {
     [self.view endEditing:YES]; 
    }
于 2013-07-17T09:04:52.920 に答える