加入上拉刷新cell会有错乱
aipame opened this issue · 4 comments
aipame commented
处在底部的时候刷新layout加载有问题不会完全加载出来只有滚动到cell 位置时候才会更新Layout 不只是不是apple 的bug
wsl2ls commented
处在底部的时候刷新layout加载有问题不会完全加载出来只有滚动到cell 位置时候才会更新Layout 不只是不是apple 的bug
好的,我查一下
wsl2ls commented
处在底部的时候刷新layout加载有问题不会完全加载出来只有滚动到cell 位置时候才会更新Layout 不只是不是apple 的bug
@aipame 我看了一下,我的Demo每次reloadData后,返回的item的宽高都是随机产生的,上拉刷新之后执行reloadData会把之前已经加载的item宽高信息重新生成,此时就会出去错乱,我的Demo不够严谨,正常情况下是不会这么操作的
aipame commented
- (void)performBatchUpdates:(void (NS_NOESCAPE ^ _Nullable)(void))updates completion:(void (^ _Nullable)(BOOL finished))completion; 用这个函数 就好了
wsl2ls commented
- (void)performBatchUpdates:(void (NS_NOESCAPE ^ _Nullable)(void))updates completion:(void (^ _Nullable)(BOOL finished))completion; 用这个函数 就好了
好的