因为集合视图的性能非常好,但是当我添加圆角和边框时,它的性能会降低。
- (UICollectionViewCell *)collectionView:(UICollectionView *)clView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
=============================
cell.layer.borderWidth = 1;
cell.layer.borderColor = [[UIColor lightGrayColor] colorWithAlphaComponent:0.5].CGColor;
cell.backgroundColor = [UIColor app_cell_background_color];
[cell.layer setCornerRadius:5.0f];
cell.layer.shouldRasterize = YES;
cell.layer.rasterizationScale = [UIScreen mainScreen].scale;
===================== }
任何人都可以建议我将如何获得与以前相同的表现。
我搜索并使用图像作为边框,但使用任何其他方法,我将能够使用图层获得相同的性能。