圖片在低ios版本下可以看到圖片,在高版本ios下顯示不了圖片
直接上解決方法
找文件?/node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m 修改源碼
原代碼
if (_currentFrame) {
layer.contentsScale = self.animatedImageScale;
layer.contents = (__bridge id)_currentFrame.CGImage;
}
修改后代碼文章來源:http://www.zghlxwxcb.cn/news/detail-642213.html
if (_currentFrame) {
layer.contentsScale = self.animatedImageScale;
layer.contents = (__bridge id)_currentFrame.CGImage;
} else {
[super displayLayer:layer];
}
實測有效,才來分享文章來源地址http://www.zghlxwxcb.cn/news/detail-642213.html
到了這里,關于React Native 在高IOS版本下無法顯示圖片的問題處理的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網(wǎng)!