尝试将 ParseLiveQuery cocoapod集成到我的项目中,但在构建时我不断收到错误:
在框架模块内部包含非模块化标头错误 'Bolt.BFCancellation'
我通过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
我还在构建设置中将允许非模块包含在框架模块中设置为是,但仍然会收到此错误。