我尝试用cocoapods安装KFEpubKit。 安装工作正常,但当我尝试运行我的项目时,由于KissXML(自动包含)我得到了这个错误:
Include of non-modular header inside framework module 'KissXML.DDXMLNode'
所以我设置了属性
Allow Non-modular Includes in Frmaework Modules
是的 但我仍然有错误。 有什么想法吗?
我知道有许多类似的问题,但没有一个解决了我的问题。
非常感谢!
答案 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)