集成报错一:导入SDK 头文件编译报错
Error :
include of non-modular header inside framework module
解决方法:
buldsetting 中设置 Allow Non-modular Includes In Framework Modules 为 YES
在 framework 库 的 主头文件中不添加 引用了系统加密解密库的文件 的引用,然后在工程中使用的时候主动引用此文件。
如果创建的 framework类 中使用了.dylib或者.tbd,首先需要在实际项目中导入 .dylib或者.tbd 动态库,然后需要设置【Allow Non-modular Includes ....】为YES,否则会报错"Include of non-modular header inside framework module"。
网友评论