UITableViewRowAnimation animaType = UITableViewRowAnimationNone;
[self.chatTable insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:(self.messageArray.count-1) inSection:0]] withRowAnimation:animaType];
[self.chatTable scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:(self.messageArray.count -1) inSection:0] atScrollPosition:UITableViewScrollPositionNone animated:NO];
}
添加此代码时候 滚动至底部cell 自动弹一下,将tableView 的 自动适应高度修改为0,就解决啦,真的是狗日啦
_chatTable.estimatedRowHeight = 0; ---->添加此行代码就完美解决