无法在iOS上构建React Native项目:找不到名为“ARTShape”的视图的组件

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

我尝试在iOS上构建React Native应用程序时收到以下错误:

No component found for view with name "ARTShape"

我在Android上没有任何此类问题。我已经尝试了解决方案here,但它不起作用:在Xcode中,在进行了这些更改并按下CMD + B后,我在Lexical or Preprocessor Issue类别下收到以下错误:

'React/UIView+React.h': file not found
ios xcode react-native react-native-ios
1个回答
0
投票

尝试链接ART库,如下所示:

pod 'React', path: '../node_modules/react-native', subspecs: [
  'ART',
]
© www.soinside.com 2019 - 2024. All rights reserved.