问题描述
我有一个聊天视图,我在其中使用tableview来显示传入和传出消息的不同自定义单元格,并且该应用程序在ios 13之前运行良好。
但是一旦我将手机操作系统更新为ios 14,它就会给我带来问题
问题似乎可能出在dequeueReusableCell函数中,如果较小的单元格,较大的单元格占用高度,而较大的单元格较小的单元格占用高度,而不是它们自己的单元格内容
我已经用过这样的桌子高度
查看中的加载功能
self.chatTableView.estimatedRowHeight = 44
self.chatTableView.rowHeight = UITableView.automaticDimension
internal func tableView(_ tableView: UITableView,estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
return UITableView.automaticDimension
}
func tableView(_ tableView: UITableView,heightForRowAt indexPath: IndexPath) -> CGFloat {
return UITableView.automaticDimension
}
也尝试使用
cell.setNeedsLayout()
cell.layoutIfNeeded()
在不同的地方,例如,当heightForRowAt,cellForRowAtIndexPAth和willdisplayCellForRowAtIndexPAth被调用但出现相同问题时
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)