Reputation: 4535
Hi everyone,
I can't find anything about this UI element on the Internet. Do you know how I could remove this "arrow" on the right of my UISearchBar
? ( I'm working programmatically, without any Storyboard ).
Upvotes: 0
Views: 139
Reputation: 1323
That's the searchResultsButton
searchBar.showsSearchResultsButton = NO;
Upvotes: 1