Change the font size and font style of UISearchBar iOS 7

后端 未结 9 848
借酒劲吻你
借酒劲吻你 2020-12-13 03:17

How can I change the font size and font style of UISearchBar in iOS 7?

UITextField *textField = [[searchBar subviews] objectAtIndex:1];
[textField setFont:[U         


        
9条回答
  •  心在旅途
    2020-12-13 03:42

    The accepted answer did not work for me on iOS 7.1. I had to change it to this:

    [[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setDefaultTextAttributes:@{
                NSFontAttributeName: [UIFont fontWithName:@"Avenir-Heavy" size:20.],
    }];
    

提交回复
热议问题