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 回答
0

使用这个简单的解决方案

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 
{
   [self.view endEditing:YES];
}  

适用于 UITextField、UITextView 和所有子视图。

于 2015-06-18T12:22:50.480 回答