在框架模块内部包含非模块化头文件错误

时间:2016-07-17 16:44:47

标签: ios xcode parse-platform parse-server

尝试将 ParseLiveQuery cocoapod集成到我的项目中,但在构建时我不断收到错误:

  

在框架模块内部包含非模块化标头错误   'Bolt.BFCancellation'

enter image description here

我通过cocoapods安装了 ParseLiveQuery (以及Parse)。这是我的podfile:

use_frameworks!

pod 'ParseLiveQuery'
pod 'Parse'

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

我还在构建设置中将允许非模块包含在框架模块中设置为,但仍然会收到此错误。

2 个答案:

答案 0 :(得分:6)

我自己也碰到了这个。我将头文件添加到Framework的伞形标题中,然后将其作为Public添加到Headers部分。 (我正在添加Reachability lib)

enter image description here

到目前为止,似乎对我没有任何麻烦。

答案 1 :(得分:0)

我解决了从框架中删除Modules文件夹的问题。

  • 使用查找器浏览到App Project中存在的框架位置

  • 进入Test.framework文件夹(在上述情况下为ParseLiveQuery.framework)并删除Modules文件夹。

  • 清理并重新构建应用程序,它将解决该问题。