美文网首页
如何设置 UISearchBar 的取消按钮属性

如何设置 UISearchBar 的取消按钮属性

作者: 大兵布莱恩特 | 来源:发表于2016-04-07 14:56 被阅读2785次

    其实就是在 UISearchBarDelegate 的

    - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar

    先设置取消按钮可以显示,才能去设置它的一些属性

    [searchBar setShowsCancelButton:YES animated:YES];

    然后呢 通过找 SearchBar 子 view 的形式找到一个UINavigationButton 的私有类,这个类苹果没有公开,但是它是个 UIButton 的子类,通过强制转换后你可以设置它的一些属性

    修改前的效果

    修改后的效果

    好了,我是大兵布莱恩特,欢迎加入博主技术交流群,iOS 开发交流群

    ![QQ20180712-0.png](https://img.haomeiwen.com/i1155481/9b84a3a3fce64f61.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

    相关文章

      网友评论

          本文标题:如何设置 UISearchBar 的取消按钮属性

          本文链接:https://www.haomeiwen.com/subject/qbnmlttx.html