欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Invariant Violation: requireNativeComponent: "RNCWKWebView" was not found in the UIManager.

程序员文章站 2024-02-07 14:47:04
react-native 0.60以上版本安装第三方库的时候会autolink 出现这个问题是 我安装 react-native-webview 之后运行 ios出现的,这是因为ios 没有自动安装依赖库 此时: 1. cd ios 2. pod install 就会安装ios所需要的库 类似的报错 ......

react-native  0.60以上版本安装第三方库的时候会autolink  出现这个问题是 我安装 react-native-webview 之后运行 ios出现的,这是因为ios 没有自动安装依赖库 此时:

1.  cd ios

2.  pod install

就会安装ios所需要的库  

 

Invariant Violation: requireNativeComponent: "RNCWKWebView" was not found in the UIManager.

类似的报错还有很多 比如:null is not an object (evaluating '_rngesturehandlermodule.default.direction')

这个是安装 react-navigation  的时候附带安装的  react-native-gesture-handler  还是进入ios 根目录  pod install 就可以

千万别相信网上说的再xcode工程的 liabrarys文件夹 添加依赖工程 添加完就编译报错。也不要相信  react-native link  ,如果你是0.60 以上版本。