gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 00:23:29 28 4
gpt4 key购买 nike

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

enter image description here

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

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

最佳答案

你可以使用此代码:

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

关于ios - 在iOS 7中更改UISearchBar UISegmentedControl的字体大小和字体样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43693034/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com