KissXML pod与KFEpubKit的问题

时间:2015-10-31 16:59:57

标签: ios swift cocoapods

我尝试用cocoapods安装KFEpubKit。 安装工作正常,但当我尝试运行我的项目时,由于KissXML(自动包含)我得到了这个错误:

Include of non-modular header inside framework module 'KissXML.DDXMLNode'

所以我设置了属性

Allow Non-modular Includes in Frmaework Modules

是的 但我仍然有错误。 有什么想法吗?

我知道有许多类似的问题,但没有一个解决了我的问题。

非常感谢!

1 个答案:

答案 0 :(得分:0)

添加

post_install do |installer|
    installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
        configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
    end
end
pod文件末尾的

可以解决您的问题。但是你会遇到下一个......(你不能构建Obj-C模块KFEpubKit)