如何更改UISearchBar范围栏中UIButtons的字体? 我已经更改了UISearchBar输入的字体,但这并没有改变范围栏。
使用此代码,我在AppDelegate.m中更改了UISearchBar文本字体和颜色。
[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setDefaultTextAttributes:@{NSForegroundColorAttributeName:FONT_COLOR, NSFontAttributeName:NAVIGATION_BAR_FONT}];
答案 0 :(得分:1)
您可以使用此代码:
UIFont *font = [UIFont fontWithName:@"ur font name" size:10];
NSDictionary *attributes = [NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName];
[your segmentName setTitleTextAttributes:attributes forState:UIControlStateNormal];