博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发-automaticallyAdjustsScrollViewInsets属性
阅读量:5861 次
发布时间:2019-06-19

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

最近遇到一个问题是这样的,App一般自己都会有一个UINavigationController,顶部TableView如果有tableHeaderView如果设置起始位置是(0,0)是在导航栏的下面的,为了更好地UI希望从屏幕的(0,0)开始,就遇到了上面的这个问题,简单的看一下效果:

主要代码如下:

- (UITableView *)tableView {    if (!_tableView) {        _tableView = [[UITableView alloc]                      initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.bounds),                                               CGRectGetHeight(self.view.bounds))                      style:UITableViewStylePlain];        //        _tableView.tableFooterView = [[UIView alloc] init];        _tableView.rowHeight =40.0;        _tableView.sectionHeaderHeight = 0.0;        _tableView.sectionFooterHeight = 0.0;        _tableView.dataSource = self;        _tableView.delegate = self;    }    return _tableView;}-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    return 5;}//http://www.cnblogs.com/xiaofeixiang 技术交流:228407086-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell  *cell=[[UITableViewCell alloc]init];    cell.textLabel.text=@"博客园-FlyElephant";    return cell;}

这个时候设置automaticallyAdjustsScrollViewInsets效果如下:

 

官方文档解释如下:

A Boolean value that indicates whether the view controller should automatically adjust its scroll view insets.DeclarationSWIFTvar automaticallyAdjustsScrollViewInsets: BoolOBJECTIVE-C@property(nonatomic, assign) BOOL automaticallyAdjustsScrollViewInsetsDiscussionThe default value of this property is YES, which allows the view controller to adjust its scroll view insets in response to the screen areas consumed by the status bar, navigation bar, and toolbar or tab bar. Set to NO if you want to manage scroll view inset adjustments yourself, such as when there is more than one scroll view in the view hierarchy.AvailabilityAvailable in iOS 7.0 and later.

简单点说就是automaticallyAdjustsScrollViewInsets根据按所在界面的status bar,navigationbar,与tabbar的高度,自动调整scrollview的 inset,设置为no,不让viewController调整,我们自己修改布局即可~

你可能感兴趣的文章
JFinal框架操作oracle数据库
查看>>
Android设置通知Notification
查看>>
postgresql centos安装
查看>>
RegularEnumSet存储原理
查看>>
windows对linux的文件传输(上传、下载)
查看>>
CentOS 7中使用Subversion Edge安装Subversion服务器
查看>>
Validator验证框架
查看>>
tomcat连接数据库,提高程序的可移植性。
查看>>
ios7适配 通知栏UINavigationBar遮挡view的问题
查看>>
Android手机平板两不误,使用Fragment实现兼容手机和平板的程序
查看>>
传感器
查看>>
oracle中ddl为什么不能回滚
查看>>
vi tab和空格互相转换
查看>>
MongoMapper中的update方法
查看>>
android中禁止横竖屏切换
查看>>
你可能不知道的10个JavaScript小技巧
查看>>
Java对excel解析 兼容2003与2007
查看>>
android 悬浮窗 使用问题
查看>>
JSP页面表单自动清空方法
查看>>
很好看的表格样式
查看>>