UISearchBar-更改范围而不灰显表格?
如何允许范围更改而不使表格变灰、搜索字段成为第一响应者和键盘弹出窗口?
我只是想根据范围刷新显示的数据。
How can I allow a change in scope without having the table grey out, the search field become first responder and keyboard popup?
I simply want to refresh the data shown based on the scope.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过以下方式实现了这一点:
I achieved this with following:
如果您要使用标准 UISearchBar 范围按钮更改范围,请覆盖 searchDisplayController:shouldReloadTableForSearchScope 方法在 UISearchDisplayDelegate 中,并让它执行您需要的任何操作。
If you are changing the scope using the standard UISearchBar scope buttons override the searchDisplayController:shouldReloadTableForSearchScope method in your UISearchDisplayDelegate and have it do whatever you need it to.