0

我有一个UICollectionView我正在重用许多UICollectionViewCells产品信息的地方,想想 Pinterest。

但是到了一个地步,我有一个价格标签,并且想为每个单元格将价格带旋转大约 45 度。

请注意绿色价格丝带

实现这一目标的最佳性能明智方法是什么?

我尝试过:

#import <QuartzCore/QuartzCore.h>

@interface ItemCollectionViewCell : UICollectionViewCell

@property (weak, nonatomic) IBOutlet UILabel *price;

@end


@implementation ItemCollectionViewCell

@synthesize price;

- (void)awakeFromNib {
    price.layer.transform = CATransform3DMakeRotation(M_PI_4, 0, 0, 1);
    price.layer.transform = CATransform3DTranslate(price.transform, 25, -15, 0);
    price.layer.shouldRasterize = YES;
}

@end

但是将新视图滚动并推送到导航控制器的总体结果确实很慢。

更新

  • 似乎 iOS6 自动布局是性能下降的主要原因,但我仍然不知道如何解决这个问题或仅删除价格标签的自动布局。
4

1 回答 1

3

对我有用的是UICollectionViewCell在它为标签设置约束的地方删除由 iOS6 autoLayout 功能定义的属性,即price

- (void)awakeFromNib {

    NSMutableArray* cons = [NSMutableArray array];
    //iterating through UICollectionViewCell constraint list
    for (NSLayoutConstraint* con in self.constraints) {
        //if the target constraint is `price` then add that to the array
        if (con.firstItem == price || con.secondItem == price) {
            [cons addObject:con];
        }
    }
    //remove the unwanted constraints array to the UICollectionViewCell
    [self removeConstraints:cons];

    //ready to roll…
    price.layer.transform = CATransform3DMakeRotation(M_PI_4, 0, 0, 1);
    price.layer.transform = CATransform3DTranslate(price.transform, 25, -15, 0);
    price.layer.shouldRasterize = YES;
}
于 2013-01-16T13:03:36.340 回答