美文网首页ReactNativeiOS14内容
ios 14 react native 图片不显示bug

ios 14 react native 图片不显示bug

作者: 半个木头人 | 来源:发表于2020-09-18 11:21 被阅读0次

路径react-native/Libraries/Image/RCTUIImageViewAnimated.m

if(_currentFrame) { layer.contentsScale= self.animatedImageScale; layer.contents= (__bridgeid)_currentFrame.CGImage; }

修改成:

if(_currentFrame) { layer.contentsScale= self.animatedImageScale; layer.contents= (__bridgeid)_currentFrame.CGImage; }else{ [superdisplayLayer:layer]; }

 https://github.com/facebook/react-native/issues/29279

相关文章

网友评论

    本文标题:ios 14 react native 图片不显示bug

    本文链接:https://www.haomeiwen.com/subject/rgodyktx.html