Is there a way to reposition UITextField inside UISearchBar? I'd like to move UITextField inside UISearchBar up a little bit.
Is there a way to reposition UITextField inside UISearchBar? I'd like to move UITextField inside UISearchBar up a little bit.
Swift 4+
You can try this.
searchBar.searchTextPositionAdjustment = UIOffset(horizontal: 5, vertical: 0)
It doesn't move the textField, but moves the text. This should be enough for most people.