在单元格上设置角半径会导致UICollectionView的性能下降

时间:2012-12-20 20:24:47

标签: ios uicollectionview uicollectionviewcell

我有UICollectionView只有几个单元格(大约20个)。这个系列的性能非常好。但是,只要我尝试围绕此视图渲染的UICollectionViewCells的角落,我的表现就会受到重创。在我的单元格的init方法中,这是我添加的唯一一行:

[self.layer setCornerRadius:15];

由于这是在init方法中并且我正在重新使用单元格,我不明白为什么这会导致我的问题。

我尝试使用以下多种组合来调整卖出的光栅化和不透明度,但仍无效果:

[self.layer setMasksToBounds:YES];
[self.layer setCornerRadius:15];
[self.layer setRasterizationScale:[[UIScreen mainScreen] scale]];
self.layer.shouldRasterize = YES;
self.layer.opaque = YES;

是否有一些设置或技巧可以提高具有圆角单元格的UICollectionView的性能?

4 个答案:

答案 0 :(得分:10)

正如@Till在评论中指出的那样,预呈现的图像应该可以解决您的性能问题。您可以将所有角落舍入,阴影和其他任何特殊效果放入其中,而不需要CA即时渲染它们。

预渲染图像不会将您锁定为静态内容大小:查看UIImage resizable image内容。 (这仍然比每帧渲染CA的速度快。)

答案 1 :(得分:1)

我发现这完全是因为调用了dequeuereusablecellwithidentifier。每次调用时,都需要重新渲染具有圆角的单元格。如果在项目滚动离开屏幕时集合视图没有从视图中删除它们,那么性能将不会受到影响(只要它们在集合中没有太多项目)。看起来像一把双刃剑 - 两种方式都有其局限性。

答案 2 :(得分:1)

UIView子类有一个代码,它为您提供了一个带有不透明圆形边框和中间透明孔的视图。 您应该像往常一样创建所需的视图,之后您可以在视图上添加带孔的视图。可视化是here

如果你为UICollectionView或UITableView使用单色背景,它可以工作,你可以为每个单元格添加以下子视图:

@interface TPRoundedFrameView : UIView

@property (assign, nonatomic) CGFloat cornerRadius;
@property (strong, nonatomic) UIColor * borderColor;

@end

@implementation TPRoundedFrameView

- (instancetype)init {
    if ((self = [super init])) {
        self.opaque = NO;
        self.backgroundColor = [UIColor clearColor];
    }
    return self;
}

- (void)drawRect:(CGRect)rect {
    [super drawRect:rect];

    UIBezierPath * path = [UIBezierPath bezierPathWithRect:rect];
    UIBezierPath * innerPath = [UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:self.cornerRadius];
    [path appendPath:[innerPath bezierPathByReversingPath]];
    [self.borderColor set];
    [path fill];
}

@end

目标细胞类的示例:

- (void)awakeFromNib {
    [super awakeFromNib];
    // creating holed view with rounded corners
    self.myRoundedView.backgroundColor = [UIColor whiteColor];
    TPRoundedFrameView * roundedFrame = [TPRoundedFrameView new];
    roundedFrame.cornerRadius = 5.f;
    roundedFrame.borderColor = [UIColor groupTableViewBackgroundColor];

    // add borders to your view with appropriate constraints
    [self.myRoundedView addSubview:roundedFrame];

    roundedFrame.translatesAutoresizingMaskIntoConstraints = NO;
    NSDictionary * views = NSDictionaryOfVariableBindings(roundedFrame);
    NSArray * horizontal = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[roundedFrame]-0-|" options:0 metrics:nil views:views];
    NSArray * vertical = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[roundedFrame]-0-|" options:0 metrics:nil views:views];
    [self.myRoundedView addConstraints:horizontal];
    [self.myRoundedView addConstraints:vertical];
}

结果: {4}将圆角视图作为单元格

答案 3 :(得分:0)

我通过在contentView上应用此半径而不是单元格本身来修复我的所有性能borderRadius问题。

self.contentView.layer.borderWidth = 1.0f;
self.contentView.layer.cornerRadius = 5.0f;
self.contentView.layer.borderColor = [UIColor colorWithRed:202/255. green:202/255. blue:202/255. alpha:1.0].CGColor;