博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UINavigationController 总结
阅读量:6644 次
发布时间:2019-06-25

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

一 . UINavigationBar

  1.获取 UINavigationBar 对象: [UINavigationBar appearance] ,可以通过该方法对全部 navigation 进行设置

  2.设置导航栏背景图片:[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"name"] forBarMetrics:UIBarMetricsDefault];

  3.设置标题字体:[UINavigationBar appearance].titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};

二 . UIBarButtonItem

  1.获取 UIBarButtonItem 对象: [UIBarButtonItem appearance] 可以通过该方法实现对 barButtonItem (即导航栏按钮)样式,显示字体进行设置 (同一 navigation 下全部)

  2.设置按钮的颜色,大小 : [[UIBarButtonItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:13]} forState:UIControlStateNormal];

  3.设置导航栏渐变色(返回箭头白色) : [UIBarButtonItem appearance].tintColor = [UIColor whiteColor];

 

转载于:https://www.cnblogs.com/Ager/p/4948329.html

你可能感兴趣的文章
电子墨水技术进入中国智能手机
查看>>
3.7 批量导入来源准则
查看>>
RIP协议
查看>>
php 读取windows 的系统版本,硬盘,内存,网卡,数据流量等
查看>>
Python数据类型(简单入门)
查看>>
Windows下搭建PHP开发环境
查看>>
[转] 彼得林奇:最珍贵的成长股投资精髓
查看>>
模块测试
查看>>
多屏移动端网站开发需要注意的十大技巧
查看>>
ORA-12516: TNS: 监听程序找不到符合协议堆栈要求的可用处理程”的异常
查看>>
《编码的奥秘》笔记
查看>>
shell编程(1)
查看>>
JS alert()、confirm()、prompt()的区别
查看>>
struts2获取request、session、application的四种方式
查看>>
团队作业需求分析
查看>>
20155222 2016-2017-2 《Java程序设计》第7周学习总结
查看>>
冗余路径Redundant Paths
查看>>
微信小程序_快速入门01
查看>>
6.28个人总计
查看>>
Web 设计新趋势: 使用 SVG 代替 Web Icon Font
查看>>