0

在 Apple 的 TableSearch 示例代码中,在 iPad 上,当他们在 searchBar 中搜索时,tableView 会更新以反映正在搜索的内容。在 iPad 上,我的 SearchDisplayController 将 tableView 放在 UIPopoverController 中。有什么办法可以避免这种行为并更新占据我整个屏幕的原始 tableView 中的列表?谢谢。

4

1 回答 1

0

所以我可以通过不使用搜索显示控制器而只使用搜索栏的委托方法来获得所需的功能:

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {

     // filter content and reload table.
}
于 2012-08-17T19:55:20.670 回答