gpt4 book ai didi

iphone - 你如何在 iOS5 的 UISearchBar 中更改字体?

转载 作者:行者123 更新时间:2023-11-28 19:18:27 24 4
gpt4 key购买 nike

我正在尝试使用适用于 iOS5 的新“外观”代理更改我所有 UISearchBar 对象的字体,例如:

 [[UISearchBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[UIFont fontWithName:@"Trebuchet MS" size:0.0], UITextAttributeFont,
nil]];

每次我运行这个,我都会收到这个错误:

“2012-05-28 03:01:52.264 DirectDx_ClientApp[30039:15503] * 由于未捕获的异常‘NSInvalidArgumentException’而终止应用程序,原因:‘-[_UIAppearance setTitleTextAttributes:]:无法识别的选择器发送到实例 0x8460cf0 '* 首先抛出调用栈:(0x1ea8022 0x3a4fcd6 0x1ea9cbd 0x1e0eed0 0x1e0ecb2 0x5e695 0x5dd78 0x217aa 0x789386 0x78a274 0x799183 0x799c38 0x78d634 0x203be f5 0x1e7c195 0x1de0ff2 0x1ddf8da 0x1dded84 0x1ddec9b 0x789c65 0x78b626 0x2164d 0x2895 0x1)终止称为抛出异常”

上述方法与 UITabBar 和 UINavigationBar 完美配合。

有什么见解吗?

非常感谢。

最佳答案

试试这个,它适用于 iOS 5.0 及更高版本(也适用于 iOS 7):

- (void)viewDidLoad
{
[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setFont:[UIFont fontWithName:@"Helvetica" size:20]];
}

适用于 iOS 8

- (void)viewDidLoad
{
[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setDefaultTextAttributes:@{
NSFontAttributeName: [UIFont fontWithName:@"Helvetica" size:20],
}];
}

关于iphone - 你如何在 iOS5 的 UISearchBar 中更改字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10782817/

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