我做了类似的文本字段搜索。
我首先在其中创建文本字段并添加新的 UISearchViewController
现在我已经设置
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[textField resignFirstResponder];
self.searchDisplayController.searchBar.hidden = FALSE;
[self.searchDisplayController.searchBar becomeFirstResponder];
[self.searchDisplayController setActive:YES animated:NO];
}
但我只看到没有键盘的搜索显示控制器和黑色背景
当我直接在搜索栏中按下时,它会显示键盘
从上述方法中,我应该如何在 UISearchBarController 中显示键盘
编辑
请从这里下载我的代码http://sourceforge.net/projects/locationdemo/files/LocationDemo.zip/download