我在UICollectionView中使用SDWebimage在UIImageView中设置图像。场景就像有一个可扩展的UILabel,通过点击它可以扩展和折叠。所以在点击它时会重新加载特定的单元格。这一切都运行正常,但问题是,当用户将应用程序放在后台,然后将其带入前景并再次点击UILabel然后重新加载单元格,现在图像设置为动画,如屏幕中的发光效果.Below是我在collectionViewCell方法中使用的代码。
[UIView transitionWithView:self.imgBackground
duration:0.0f
options:UIViewAnimationOptionTransitionNone
animations:^{
[self.imgBackground sd_setImageWithURL:[NSURL URLWithString:[dictData objectForKey:@"seasonImage"]]];
self.imgBackground.contentMode = UIViewContentModeScaleAspectFill;
self.imgBackground.clipsToBounds = YES;
} completion:^(BOOL finished){
}];
先谢谢。