码迷,mamicode.com
首页 > 移动开发 > 详细

iOS中的translucent和automaticallyAdjustsScrollViewInsets用法

时间:2016-11-16 14:00:56      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:keyword   开始   usb   view   var   end   auto   ios7   set   

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用法

标签:keyword   开始   usb   view   var   end   auto   ios7   set   

原文地址:http://www.cnblogs.com/yuwei0911/p/6068924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!