我必須將CAGradientLayer
添加到某些自定義UICollectionViewCells
的背景圖像。我正在使用自定義流佈局來顯示像這樣的單元格。將CAGradientLayer添加到UICollectionViewCell中的UIImageView具有奇怪的行爲
我有複用性當我在collectionView
和梯度層做滾動添加到圖像改變它們的大小的問題。正如你在這張圖片中看到的那樣,漸變會改變它的大小。
我也有一些細胞的問題,這些細胞添加梯度層兩次。所以我想添加的陰影效果太暗了。
我正在使用此代碼。
- (void)prepareForReuse {
[super prepareForReuse];
[self.gradientLayer removeFromSuperlayer];
self.gradientLayer = nil;
self.articleImageView.image = nil;
}
- (void)layoutSubviews {
[super layoutSubviews];
[self setupGradient];
}
#pragma mark - Setup
- (void)setupGradient {
UIColor *threeQuartersBlack = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.6];
UIColor *halfBlack = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];
UIColor *oneQuarterBlack = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];
CAGradientLayer *gradient = [CAGradientLayer layer];
CGFloat gradientHeight =self.bounds.size.height/3.0;
CGRect gradientBounds = CGRectMake(0, self.bounds.size.height-gradientHeight, self.bounds.size.width, gradientHeight);
gradient.frame = gradientBounds;
gradient.anchorPoint = CGPointMake(0.5, 0.5);
gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor clearColor] CGColor],(id)oneQuarterBlack.CGColor ,(id)halfBlack.CGColor , (id)threeQueartesBlack.CGColor, (id)[[UIColor blackColor] CGColor], nil];
self.gradientLayer = gradient;
[self.articleImageView.layer insertSublayer:self.gradientLayer atIndex:0];
}
我注意到如果我彈出該ViewController並再次顯示它,一切都是正確的。
任何人都知道我應該怎麼做才能解決這個問題?
謝謝
你明白你的問題解決了嗎?我正是你的問題...... – Sina