码迷,mamicode.com
首页 > 其他好文 > 详细

如何修改搜索框中的cancel button的颜色

时间:2017-01-17 07:39:35      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:object-c   searchbar   round   颜色   str   状态   ini   object   controls   

// 记住最初的状态,用完的时候用这个还原

        self.cancelBtnTextAttribute = UIBarButtonItem.appearance().titleTextAttributes(for: UIControlState.normal) as [String : AnyObject]?

        let cancelBtn:UIButton = self.searchBar.subviews[0].subviews[2] as! UIButton

// 设置自定义的状态

        cancelBtn.setTitle("取消" ,for:UIControlState.normal)

        let cancelButtonAttributes: NSDictionary = [NSForegroundColorAttributeName: UIColor.init(hex6: 0xF24500)]

        UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes as? [String : AnyObject], for: UIControlState.normal)

 

 当然object-c的也是一样的实现,只要把swift的语法转换成object-c的救行了。

如何修改搜索框中的cancel button的颜色

标签:object-c   searchbar   round   颜色   str   状态   ini   object   controls   

原文地址:http://www.cnblogs.com/codetime/p/6291535.html

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