作者:滒娶伱 | 来源:互联网 | 2023-05-27 19:00
我想更改iOS 8中UISearchBar内的取消按钮的文本字体和颜色.我已经尝试过iOS 6和7的解决方案,但它们似乎无法正常工作.
1> diogo.appDev..:
This was not the solution I was looking for, but it worked.
let cancelButtonAttributes: NSDictiOnary= [NSFontAttributeName: FONT_REGULAR_16!, NSForegroundColorAttributeName: COLOR_BLUE]
UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes, forState: UIControlState.Normal)
这会更改所有小节按钮项的颜色,而不仅仅是UISearchBar的"取消"按钮.