在我的
Swift iOS应用程序中集成react-native之后,我无法构建.找不到瑜伽/ Yoga.h文件.我已经浏览了文档,检查了react-native github页面,检查了类似问题的SO问题.这些解决方案似乎都不起作用.
任何帮助都将不胜感激.这毁了我的一天灾难性的!
这是我的pod文件
platform :ios,'9.0' use_frameworks! target 'MyCustomApp' do pod 'Alamofire','~> 4.0' pod 'React',:path => './node_modules/react-native',:subspecs => [ 'Core','RCTText','RCTNetwork','RCTWebSocket',# needed for debugging 'RCTText','RCTImage' # Add any other subspecs you want to use in your project ] end
解决方法
瑜伽是CSSLayout重命名:
https://github.com/facebook/react-native/commit/7f8c2985a8e447fd18f8b9331d4f35abeadaeb0e.
看起来这是一个问题,已经发生在CSSLayout的几个反应原生版本中,现在恰好有一个不同的名称.以下是使用post_install的解决方法:https://github.com/facebook/react-native/issues/11272