Change the font size of UISearchBar

前端 未结 19 1311
情歌与酒
情歌与酒 2020-12-04 15:08

How can I change the font size of UISearchBar ?

19条回答
  •  醉梦人生
    2020-12-04 16:08

    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]];
    

提交回复
热议问题