3

为私有框架构建自定义 pod,在我的主项目中,我使用自定义 OTHER_SWIFT_FLAGS。

理论上,应该可以在安装期间基于主项目覆盖 pod 的设置,但没有关于如何这样做的文档。

到目前为止,我的尝试失败了,有什么提示吗?看起来项目(https://guides.cocoapods.org/syntax/podfile.html#project)应该是要走的路,但同样没有文档。

4

1 回答 1

4

所以基本上它看起来像这样。访问 xcode 项目,然后访问 pod 并循环遍历每个配置以设置正确的值。

post_install do |installer|
require 'xcodeproj'
project_path = 'pathTo/myProj.xcodeproj' # path to your xcode project
project = Xcodeproj::Project.open(project_path)
project.targets.each do |target|
    if target.name == 'myTarget' # name of the target in your main project containing the custom flag
        installer.pods_project.targets.each do |podTarget|
            if podTarget.name == 'myPod' #name of your pod
                target.build_configurations.each do |targetConfig|
                    podTarget.build_configurations.each do |podConfig|
                        podConfig.build_settings["OTHER_SWIFT_FLAGS"] = targetConfig.build_settings["OTHER_SWIFT_FLAGS"]
                    end
                end

            end
        end
    end
end
于 2017-07-06T13:48:41.620 回答