博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改searchbar 取消 字体 颜色
阅读量:5287 次
发布时间:2019-06-14

本文共 727 字,大约阅读时间需要 2 分钟。

UIButton *cancelButton;      UIView *topView = self.searchDisplayController.searchBar.subviews[0];      for (UIView *subView in topView.subviews) {          if ([subView isKindOfClass:NSClassFromString(@"UINavigationButton")]) {              cancelButton = (UIButton*)subView;          }      }      if (cancelButton) {          //Set the new title of the cancel button          [cancelButton setTitle:@"取消" forState:UIControlStateNormal];          [cancelButton setTitleColor:[UIColor colorWithRed:53.f/255.f green:114.f/255.f blue:255.f/255.f alpha:1.0] forState:UIControlStateNormal];          cancelButton.titleLabel.font = [UIFont fontWithName:@"Heiti SC" size:15];      }

 

转载于:https://www.cnblogs.com/frounk/p/5150966.html

你可能感兴趣的文章
JSON数据解析
查看>>
渗透资源大全
查看>>
jQuery简介
查看>>
作业3
查看>>
如鹏网 静态Web开发 第五章:JQuery
查看>>
sublime 常用快捷键
查看>>
xgb+lr
查看>>
[POST] What Is the Linux fstab File, and How Does It Work?
查看>>
spark 熟悉过程
查看>>
oracle NVL与Coalesce的区别
查看>>
03-11考试总结
查看>>
Linux yum安装过程图文详解
查看>>
bzoj2733: [HNOI2012]永无乡
查看>>
一文读懂MapReduce
查看>>
30个新鲜的社会化图标集合
查看>>
线段树
查看>>
java基础知识点回顾
查看>>
Ado.Net五大对象
查看>>
C语言 读入-fgets()
查看>>
java interface
查看>>