Questions tagged «react-native-ios»


30
React Native版本不匹配
想要改善这篇文章吗?提供此问题的详细答案,包括引文和答案正确的解释。答案不够详细的答案可能会被编辑或删除。 当我初始化一个新项目然后启动Xcode模拟器时,收到以下消息: React-Native版本不匹配 Javascript版本0.50.1本机版本:0.50.0 确保您已重建本机代码。... 有谁知道这里发生了什么并且可以帮助我?

23
`react-native run-ios`返回错误:找不到iPhone X模拟器
每当我跑步时react-native run-ios,我都会 Could not find iPhone X simulator Error: Could not find iPhone X simulator at resolve (calendarPractice/node_modules/react-native/local-cli/runIOS/runIOS.js:149:13) at new Promise (<anonymous>) at runOnSimulator (calendarPractice/node_modules/react-native/local-cli/runIOS/runIOS.js:134:10) at Object.runIOS [as func] (calendarPractice/node_modules/react-native/local-cli/runIOS/runIOS.js:106:12) at Promise.resolve.then (calendarPractice/node_modules/react-native/local-cli/cliEntry.js:117:22) 但是,当我在Xcode上运行时,它工作正常 { "devicetypes" : [ { "name" : "iPhone 4s", "bundlePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/Library\/CoreSimulator\/Profiles\/DeviceTypes\/iPhone 4s.simdevicetype", "identifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-4s" …

21
找不到React / RCTBridgeModule.h文件
在xcode上构建本机iOS应用程序时遇到此错误。 在npm install和rpm链接react-native-fs库之后,开始出现此错误。但是在网上搜索解决方案后,我注意到许多人在安装其他React Native库时遇到了相同的错误。 许多人建议的一种可能的解决方案是,在“构建设置”->“标题搜索路径”下添加以下内容。 $(SRCROOT)/../node_modules/react-native/React -(递归) 但是这种解决方案没有运气,仍然会出现相同的错误

13
如何在React Native项目中重新生成ios文件夹?
所以不久前,我在我的react本机应用程序中删除了/ ios目录(我们称它为X)。我一直在使用Android模拟器进行开发和测试,但是现在我想确保它可以在带有xcode模拟器等的ios上运行。 因此,我目前的想法是使用ios文件夹创建一个新的react native裸项目(称为Y),然后按照以下步骤将Y重命名,使其具有X的名称,然后将/ ios目录从Y移到X并试图run-ios。 我将在这里更新情况,但是我想知道是否有更好的方法,并且以前没有人遇到这种情况吗? 我已经搜索了很多东西“重新生成ios文件夹”“已删除ios文件夹”“将ios文件夹添加到现有..”,没有任何帮助。也许我的googlefu不够好,但是如果有人有任何建议,不胜感激。 第2步将确保它能因依赖关系和其他东西而编译,但是现在我的目标是只将/ ios文件夹放回到项目中,并使React Native知道它的存在(它具有所有必要的配置)。 谢谢


8
收到此错误:错误:捆绑失败:错误:无法解析模块“ react-native-safe-area-context”
运行我的应用程序后出现此错误: 错误:捆绑失败:错误:无法react-native-safe-area-context从node_modules/react-navigation-stack/lib/module/vendor/views/Stack/StackView.js以下项目解析模块:在项目中找不到react-native-safe-area-context。 但是我为以前的演示做过同样的事情。它工作得很好。 我不知道我在做什么错。请检查我的代码: 安装: React Native Navigation&Gesture Handler: npm install --save react-navigation npm install --save react-native-gesture-handler 反应本机堆栈: npm install --save react-navigation-stack App.js import { createAppContainer } from "react-navigation"; import { createStackNavigator } from "react-navigation-stack"; import FirstOptionsPage from "./FirstOptionsPage"; const MainNavigator = createStackNavigator( { FirstOptions: FirstOptionsPage }, { defaultNavigationOptions: { …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.