我使得像文本字段搜索。UISearchBarDisplayController不顯示我的鍵盤
在我所先創建文本字段,並添加新的UISearchViewController
現在我已經設定
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[textField resignFirstResponder];
self.searchDisplayController.searchBar.hidden = FALSE;
[self.searchDisplayController.searchBar becomeFirstResponder];
[self.searchDisplayController setActive:YES animated:NO];
}
但我只看到搜索顯示控制器和黑色的背景與出鍵盤
當我直接按搜索欄它顯示鍵盤
我該怎麼做顯示鍵盤在UISearchBarControll呃從上述方法
編輯
請此行是要製造問題從這裏http://sourceforge.net/projects/locationdemo/files/LocationDemo.zip/download
嘿感謝答覆份額,但它不是工作.. – Hiren
見我的編輯以上 –
看我的代碼PLZ – Hiren