码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UISearchBar 设置光标颜色和取消按钮颜色

时间:2015-08-27 18:09:27      阅读:3249      评论:0      收藏:0      [点我收藏+]

标签:

这个问题其实可以取个巧路,大家都知道设置SearchBar的tintcolor的方法

searchBar.tintColor = [UIColor blueColor];

 

    [[UIBarButtonItem appearanceWhenContainedIn:[UISearchBar class], nil]

                         setTitleTextAttributes:

                         [NSDictionary dictionaryWithObjectsAndKeys:

                                                        [UIColor whiteColor],

                                                        UITextAttributeTextColor,

                                                        [NSValue valueWithUIOffset:UIOffsetMake(0, 1)],

                                                        UITextAttributeTextShadowOffset,nil]

                                       forState:UIControlStateNormal];

 

如此,取消按钮的颜色即为想要的颜色了!

iOS UISearchBar 设置光标颜色和取消按钮颜色

标签:

原文地址:http://www.cnblogs.com/ycq-firstBlood/p/4763778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!