美文网首页
遇到的错误React-Native 'RCTRootVi

遇到的错误React-Native 'RCTRootVi

作者: 默默的前行 | 来源:发表于2017-04-13 17:36 被阅读94次

    这几天研究React-Native,遇到的错误


    2.cd 到我们该项目的根目录下;

    1.//执行
    2.$npm install
    

    3.执行完后,编译项目,看到还会提示错误: 在RCTSRWebSocket.m报错Ignoring return value of function declared with warn_unused_result attribute

    1.两处的报错代码:
    2.SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);
    
    1.//解决办法分别在两出代码前面加上:
    2.(void)SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);
    

    再次运行,即可运行成功.

    相关文章

      网友评论

          本文标题:遇到的错误React-Native 'RCTRootVi

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