If I understand your question correctly, you are trying to resize the UISearchBar, right? Have you tried to adjust the size of its frame?
NSLog(@"Adding UISearchBar to myView."); UISearchBar *searchBar = [[UISearchBar alloc] init]; [myView addSubview:searchBar];
If you are trying to resize the UITextField subtitle in a UISearchBar, I'm afraid you are out of luck, as described in detail in this post on SO ., The UITextField inside the UISearchBar is part of a private API, an instance of UISearchBarTextField, and you cannot resize it (by any Apple will approve it). However, the UISearchBar offers ways to change the text offset in the UISearchBar. See the documentation for the UISearchBar class.
source share