How can I stop a UISearchDisplayController from updating as I type?
How can I 开发者_StackOverflow社区stop a UISearchDisplayController from updating as I type? numberOfRowsInSection gets called many times as the user types.
You could change the UISearchBar
's delegate to your view controller, and then only forward some messages to the UISearchDisplayController
.
精彩评论