在iOS 7中更改UISearchBar UISegmentedControl的字体大小和字体样式

时间:2017-04-29 07:32:55

标签: ios objective-c xcode

如何更改UISearchBar范围栏中UIButtons的字体? 我已经更改了UISearchBar输入的字体,但这并没有改变范围栏。

enter image description here

使用此代码,我在AppDelegate.m中更改了UISearchBar文本字体和颜色。

[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setDefaultTextAttributes:@{NSForegroundColorAttributeName:FONT_COLOR, NSFontAttributeName:NAVIGATION_BAR_FONT}];

1 个答案:

答案 0 :(得分:1)

您可以使用此代码:

UIFont *font = [UIFont fontWithName:@"ur font name" size:10];
NSDictionary *attributes = [NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName]; 
[your segmentName setTitleTextAttributes:attributes forState:UIControlStateNormal];