views:

17

answers:

1

How can we use the bookmark button that appears in UISearchbar. I didnt found any delegate methods for that. Any help will be greatly appreciated.

Thanks in advance!

A: 
searchBar.showsBookmarkButton=YES;

And then you can use the delegate method for when it is clicked:

- (void)searchBarBookmarkButtonClicked:(UISearchBar *)searchBar
Felixs
Thank you very much Mr Felixs!!
iSharreth