不变违规:“RCTImageView”的原生组件不存在

问题描述 投票:4回答:1

我在Xcode中创建了一个带有“主”页面的本机项目,我希望在React Native中完成项目的其余部分。在我尝试在JSX中使用<Image>标记之前,一切都很顺利。我试图找到解决方案,但没有效果。

如果我在React Native中完全创建项目(没有Xcode中的现有部分),<Image>标签可以完美地工作。

enter image description here

ios node.js xcode react-native
1个回答
5
投票

我想出问题出在哪里。我没有在我的Podfile中添加'RCTImage'

    pod 'React', :path => './node_modules/react-native', :subspecs => [
    'Core',
    'CxxBridge', 
    'DevSupport',
    'RCTText',
    'RCTNetwork',
    'RCTWebSocket',
    'RCTImage', // <- this component was missing
  ]
© www.soinside.com 2019 - 2024. All rights reserved.