美文网首页
Xcode升级12后,ReactNative ios14看不见图

Xcode升级12后,ReactNative ios14看不见图

作者: 学习abc | 来源:发表于2021-09-03 09:03 被阅读0次

解决方法

1、第一种:修改node_modules中react-native/Libraries/Image/RCTUIImageViewAnimates.m文件

if(_currentFrame){          

layer.contentsScale = self.animatedImageScale;   

layer.contents = (__bridge id)_currentFrame.CGImage;

}else{    //加上这个  不然ios14以上的系统看不见图片   

[super displayLayer:layer];

}

2、第二种:升级reactNative版本,大于或者等于0.63版本

相关文章

网友评论

      本文标题:Xcode升级12后,ReactNative ios14看不见图

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