iOS 11 tableview滑动到底部会闪动一下

初始化tableview 的时候添加如下代码

//tableview滑动到底部会闪动一下
    self.chatMessageView.estimatedRowHeight = 0;
    self.chatMessageView.estimatedSectionHeaderHeight = 0;
    self.chatMessageView.estimatedSectionFooterHeight = 0;
    if (@available(iOS 11.0, *)) {
        self.chatMessageView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        
    }

scrollview同理

链接:https://www.jianshu.com/p/59375892d5c9

你可能感兴趣的:(iOS 11 tableview滑动到底部会闪动一下)