ios|ios 14 react native 图片不显示bug

路径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]; }




【ios|ios 14 react native 图片不显示bug】 https://github.com/facebook/react-native/issues/29279

    推荐阅读