Using bookmark button in UISearchbar
How can we use the bookm开发者_StackOverflow中文版ark button that appears in UISearchbar? I didn't find any delegate methods for that.
searchBar.showsBookmarkButton = YES;
And then you can use the delegate method for when it is clicked:
- (void)searchBarBookmarkButtonClicked:(UISearchBar *)searchBar
精彩评论