Randy
Randy

Reputation: 4535

UISearchBar, remove "arrow" on the right

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 ).

enter image description here

Upvotes: 0

Views: 139

Answers (1)

JordanC
JordanC

Reputation: 1323

That's the searchResultsButton

searchBar.showsSearchResultsButton = NO;

Upvotes: 1

Related Questions