在iOS 9中更改UISearchBar文本颜色

前端之家收集整理的这篇文章主要介绍了在iOS 9中更改UISearchBar文本颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在iOS 7.x中我们能够使用

[[UITextField appearanceWhenContainedIn:[UISearchBar class],nil]
    setDefaultTextAttributes:@{NSForegroundColorAttributeName:myColor}];

但它在iOS 9中已被弃用.我所知道的唯一解决方案是迭代UISearchBar的子视图层次结构,查找UITextField并更改其属性.但这种方式被视为私有API使用

我们是否有合法的方法来更改iOS 9.x中的UISearchBar文本颜色

解决方法

您现在需要使用appearanceWhenContainedInInstancesOfClasses:

例如:

[[UITextField appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTextColor:[UIColor whiteColor]];

猜你在找的iOS相关文章