如何在 iPad 中实现 UIsearchbar 的输入提前功能
我必须为 ipad 中的搜索栏实现提前输入功能。任何搜索栏委托是否默认提供此类功能或者如何实现它?
I have to implement the type ahead functionality for a search bar in ipad. whether such functionality is by default provided by any search bar delegate or how to implement it??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,默认情况下不提供此功能,您应该自己执行此操作。如果您使用 tableView 显示搜索结果,您应该重写 UISearchBar 委托的
searchBar:textDidChange:
方法。像这样的东西:As I know this functionality is not provided by default, and you should do it by yourself. If you use tableView to display search results you should override
searchBar:textDidChange:
method of UISearchBar delegate. Something like this: