小记--2--UITableView 上拉加载更多问题

2019-03-12  本文已影响0人  Harry_upup

最近自己撸了一些界面,分别是图片 和 视频界面,cell的高度不一致,但是在加载更多的时候,比如加载第二页,加载完成后 如图

🌰

加载更多.gif

加载更多后,第一页的最后一条数据 竟然滑出了屏幕,显然这样体验不好

后来才发现 与 tableview的estimateRowHeight 有关,所以把这些预估都设置为0

self.listTableView.estimatedRowHeight =0;

self.listTableView.estimatedSectionHeaderHeight =0;

self.listTableView.estimatedSectionFooterHeight =0;

这样就可以了。

上一篇下一篇

猜你喜欢

热点阅读