Include of non-modular header inside framework module

产生原因

pod 私有库中依赖其他库,在头文件中引用了依赖库的头文件

解决办法:

1 去掉头文件中的依赖,放在.m中依赖

2 配置podspec


s.user_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }

buldsetting 中设置 Allow Non-modular Includes In Framework ModulesYES 没起作用

参考资料

https://www.jianshu.com/p/f5620c85f881

你可能感兴趣的:(Include of non-modular header inside framework module)