美文网首页
xcode11遇到React Native启动报错的问题 get

xcode11遇到React Native启动报错的问题 get

作者: iOS_Ken | 来源:发表于2020-02-16 00:24 被阅读0次

我的xcode打包闪退,尝试启动项目,遇到React Native启动报错的问题,原本的项目的是Xcode10的,现在我更新了我Xcode版本到Xcode11.

报错为

Unknown argument type 'attribute' in method -[RCTAppState getCurrentAppState:error:]. Extend RCTConvert to support this type.

这个BUG是Xcode.11引起的, 可以查看这个问题的提交记录,链接为:https://github.com/facebook/react-native/issues/25138

我们只需要找到 RCTModuleMethod.mm 这个文件,大约在93行左右

修改

static BOOL RCTParseUnused(const char **input)

{

  return RCTReadString(input, "__unused") ||

         RCTReadString(input, "__attribute__((__unused__))") ||

         RCTReadString(input, "__attribute__((unused))");

}

这个函数插入 RCTReadString(input, "attribute((unused))") || 这行代码重新运行就行了。

相关文章

网友评论

      本文标题:xcode11遇到React Native启动报错的问题 get

      本文链接:https://www.haomeiwen.com/subject/phiufhtx.html