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

2019-10-31  本文已影响0人  啵啵_long_港

初始化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

上一篇 下一篇

猜你喜欢

热点阅读