How can I change the font size of UISearchBar ?
UISearchBar
You can use KVC (key-Value Coding) to get the textfield
UITextField *textField = [self.searchBar valueForKey: @"_searchField"]; [textField setTextColor:[UIColor redColor]]; [textField setFont:[UIFont fontWithName:@"HelveticaNeue-Light" size:17.0]];