react native ios端debug模式下图片无法加载问题记录

Posted kimiier

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react native ios端debug模式下图片无法加载问题记录相关的知识,希望对你有一定的参考价值。

现象:
在这里插入图片描述

修改源码:/node_modules/react-native/Libraries/Image/RCTUIImageViewAnimated.m
第267行为

- (void)displayLayer:(CALayer *)layer
{
  if (_currentFrame) {
    layer.contentsScale = self.animatedImageScale;
    layer.contents = (__bridge id)_currentFrame.CGImage;
  }else{
    [super displayLayer:layer];
  }
}

在这里插入图片描述

以上是关于react native ios端debug模式下图片无法加载问题记录的主要内容,如果未能解决你的问题,请参考以下文章

React-native-agora 音频仅在后台模式下无法在前台模式下工作(iOS)

React Native App Debug 模式工作正常,Release 模式崩溃(App Registry 和评估 'a.View.propTypes.style')

React-Native:如何在真实的 iOS 设备上使用“Remote JS Debugger”?

从 react-native 创建 Android 和 iOS 应用

React Native api 调用不会在远程调试模式之外发生(仅限 iOS)

如何在调试模式下,在 react-native-firebase 中禁用 Crashlytics?