修改UISearchBar取消按钮字体的文本颜色和样式

修改UISearchBar取消按钮字体的文本颜色和样式

本文介绍了修改UISearchBar取消按钮字体的文本颜色和样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在不将搜索栏归类的情况下更改UISearchBar取消按钮的文本字体和颜色?

Is there any way to change the text font and color of the UISearchBar Cancel button without subclassing the searchbar?

推荐答案

当包含在UISearchBar中时,可以通过更改UIBarButtonItem的外观来更改取消"按钮样式.

You can change Cancel button styling by changing the appearance of UIBarButtonItem when contained in UISearchBar.

例如,

[[UIBarButtonItem appearanceWhenContainedIn:[UISearchBar class], nil] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                      [UIColor blueColor],
                                                      UITextAttributeTextColor,
                                                      [UIColor darkGrayColor],
                                                      UITextAttributeTextShadowColor,
                                                      [NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
                                                      UITextAttributeTextShadowOffset,
                                                      nil]
                                            forState:UIControlStateNormal];

这篇关于修改UISearchBar取消按钮字体的文本颜色和样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 10:25