目前YBImageBrowser的pod版本为3.0.9!该版本没有对iOS14进行适配。
以至于iOS14下显示不出图片,黑屏状态。
出现原因:iOS 14系统调用方法- (void)displayLayer:(CALayer *)layer,YYAnimatedImageView没有正确处理。
解决:重写YYAnimatedImageView.m 的中的displayLayer方法。
-(void)displayLayer:(CALayer*)layer{// if (_curFrame) {// layer.contents = (__bridge id)_curFrame.CGImage;// }UIImage*currentFrame=_curFrame;if(!currentFrame){currentFrame=self.image;}if(currentFrame){layer.contentsScale=currentFrame.scale;layer.contents=(__bridgeid)currentFrame.CGImage;}}
作者:Im_Small_Potato
链接:https://www.jianshu.com/p/99da879f2f09
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
网友评论