iOS中的translucent和automaticallyAdjustsScrollViewInsets用法
Posted ooooooo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS中的translucent和automaticallyAdjustsScrollViewInsets用法相关的知识,希望对你有一定的参考价值。
ios中的translucent和automaticallyAdjustsScrollViewInsets用法
关于这两个属性我长话短说
具体的可以更具具体情况来设置:
- translucent用法
- automaticallyAdjustsScrollViewInsets用法
translucent用法
iOS7之后由于navigationBar.translucent默认是YES,
原点在(0,0)点
当设置NO的时候,原点坐标在(0,64)点
// 原点从(0,64)开始
self.navigationController.navigationBar.translucent = NO;
automaticallyAdjustsScrollViewInsets用法
在用的时候都会有两种情况咯
1:单独设置self.automaticallyAdjustsScrollViewInsets
// 原点从(0,64)开始
self.automaticallyAdjustsScrollViewInsets = NO;
2:单独self.automaticallyAdjustsScrollViewInsets = NO设置,原点就是(0,0)开始
// 原点从(0,0)开始
self.automaticallyAdjustsScrollViewInsets = NO;
3:和self.edgesForExtendedLayout联合设置,原点就是(0,64)开始
// 原点从(0,64)开始
self.automaticallyAdjustsScrollViewInsets = NO;
self.edgesForExtendedLayout = UIRectEdgeNone;
系统就会自动根据UINavigationBar和statusBar将view下移64,frame从(0,64)开始。这样,我们在布局内部控件的时候依然可以从(0,0)开始,而不必担心上部被UINavigationBar遮挡了
以上是关于iOS中的translucent和automaticallyAdjustsScrollViewInsets用法的主要内容,如果未能解决你的问题,请参考以下文章
Translucent Modal ViewController - 如何处理旋转
iOS 8 中 UITableViewController 中的透明 UINavigationBar