初始化tableview 的时候添加如下代码
//tableview滑动到底部会闪动一下
self.chatMessageView.estimatedRowHeight = 0;
self.chatMessageView.estimatedSectionHeaderHeight = 0;
self.chatMessageView.estimatedSectionFooterHeight = 0;
if (@available(iOS 11.0, *)) {
self.chatMessageView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
scrollview同理