您好,登录后才能下订单哦!
这篇文章给大家分享的是有关iOS导航栏对控制器view的影响有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
一些属性
在了解 UINavigationBar之前,有必要了解 UINavigationBar 的一些属性
///默认 default 半透明 black 黑色 open var barStyle: UIBarStyle // 底部阴影横线,默认nil // 官方解释还涉及到了一个设置背景图片的方法 -setBackgroundImage:forBarMetrics: open var shadowImage: UIImage? // 7.0 以后已经改变,修改bar 背景颜色 请使用 -barTintColor open var tintColor: UIColor! // default is nil bar 的背景颜色 open var barTintColor: UIColor? /// 影响比较大的属性见下文,是否是半透明的 open var isTranslucent: Bool // Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent
一些条件
///当前 控制器并不是 tableviewcontroller self.view.backgroundColor = .cyan self.tableView.backgroundColor = .red self.navigationItem.title = "rootVC 标题" tableView.frame = view.bounds
1.1 默认导航栏 带有半透明效果
此时view 和 tableview 和 导航栏布局
1 view全屏布局
2 tableview默认从导航栏下部开始布局
3 导航栏半透明
细节 : 此时导航栏中的 _UIVisualEffectBackdropView 属性变成红色即 tableview的背景色
1.2 此时如果想让tableview 从顶部开始布局可添加代码
if #available(iOS 11.0,*) { self.tableView.contentInsetAdjustmentBehavior = UIScrollView.ContentInsetAdjustmentBehavior.never; } else { self.automaticallyAdjustsScrollViewInsets = false; }
神奇的是 如果 tableview从顶部布局 此时导航栏中的 _UIVisualEffectBackdropView 属性又会变成默认白色
2 设置导航栏 isTranslucent属性
isTranslucent 在6.0以后默认是 true
如果设置为false
self.navigationController?.navigationBar.isTranslucent = false
此时布局
1 view 从导航栏底部布局
2 tableview 从view (0,0) 布局
3 导航栏不透明 _UIBarBackground 默认为白色
3.1设置barTintColor
self.navigationController?.navigationBar.isTranslucent = true self.navigationController?.navigationBar.barTintColor = UIColor.purple
此时布局和默认一样
1 view从 (0,0)布局
2 tableview从导航栏底部布局
3 导航栏半透明
不同的是 UIVisualEffectView多加了一个 _UIVisualEffectSubview 用来显示我们自定义的背景色
其他两个 _UIVisualEffectSubview 和 _UIVisualEffectBackdropView view 用来实现半透明效果
3.2在 barTintColor基础上设置 isTranslucent = false 属性
结果 和 2 中的效果一样。不同的是
_UIBarBackground 变成了我们自定义的颜色
4.1 设置 setBackgroundImage
设置一张纯色图片
self.navigationBar.setBackgroundImage(UIColor.mm_colorImgHex(color_vaule: hex,alpha: 1), for: UIBarPosition.any, barMetrics: .default)
此时 布局
1 view 从导航栏底部布局 view---(0.0, 88.0, 414.0, 808.0)
2 tableview 从(0,0) 布局
3 导航栏不透明
此时打印导航栏 isTranslucent属性 为false也就是说如果调用了setBackgroundImage会默认 将 isTranslucent 置位 false
translate-----Optional(false)
4.2 我们在4.1的情况下 修改 isTranslucent
在 viewWillAppear 中修改 isTranslucent 为 true
此时布局
1 view 全屏布局
2 tableview从导航栏底部顶部开始布局
3 导航栏透明
此时打印我们的 _UIBarBackground 中的 BackgroundImage 透明度已被修改
<UIImageView: 0x7fbef1f0ce10; frame = (0 0; 414 88); alpha = 0.909804; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x600000cabd00>>
感谢各位的阅读!关于“iOS导航栏对控制器view的影响有哪些”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。