我有一个分页的 UICollectionView,每页有一个单元格。但是,我的 UICollectionViewCells 渲染速度很慢(第三方库,没有选项)。所以作为优化,我需要预先渲染当前页面左右两边的单元格,这样滚动很流畅。
我所做的是,在我的自定义 UICollectionViewLayout 中,在检查应该返回哪些单元格的 UICollectionViewLayoutAttributes 之前,将传递的 rect 偏移 1 点,请参见此处:
- (NSArray *)layoutAttributesForElementsInRectCGRect)rect {
CGRect outsetRect = CGRectInset(rect, -1, 0);
return [_myAttributes filter:^BOOL(UICollectionViewLayoutAttributes *attribs) {
return CGRectIntersectsRect(attribs.frame, outsetRect);
}];
}
这按预期工作。然而,当实际的 UICollectionView 做它的事情时,它似乎忽略了屏幕外的单元格,并且只为第一个单元格调用 cellForItemAtIndexPath
,而不是右侧(或左侧)的单元格。
有什么想法吗?谢谢
为了将来引用,我通过以下方式解决了这个问题:
干杯
关于ios - 尝试使用自定义布局使屏幕外 UICollectionViewCells 预渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21899945/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |