美文网首页
iOS tableView Section header 向下偏

iOS tableView Section header 向下偏

作者: 0200a9609930 | 来源:发表于2019-02-22 11:05 被阅读3次

1 iOS tableView Section header 向下偏移的问题

在tableView中设置了section header, 代码如下


Xnip2019-02-22_10-26-26.jpg

出现了header向下偏移的问题


Xnip2019-02-22_10-26-12.jpg
  1. 首先检查的是tableView的contentInset, 未设置
  2. scrollView的 automaticallyAdjustsScrollViewInsets, 未设置
self.tableViewChat.contentInset = UIEdgeInsetsZero;

if (@available(iOS 11.0, *)) {
  self.tableViewChat.contentInsetAdjustmentBehavior =  UIScrollViewContentInsetAdjustmentNever;
} else {
  self.automaticallyAdjustsScrollViewInsets = NO;
}

Google了相关问题, 设置下tableHeaderView, 解决了这个bug

Xnip2019-02-22_10-34-07.jpg

相关文章

网友评论

      本文标题:iOS tableView Section header 向下偏

      本文链接:https://www.haomeiwen.com/subject/wiyecxtx.html