0

有没有办法在代码中获取正在使用的 .xcconfig 文件的名称?

如下图所示,我希望能够找出配置是“Lab2”

在此处输入图像描述

4

1 回答 1

1

这是阅读它的一种方式...

编辑您的 Lab2.xcconfig 文件并添加它

OTHER_SWIFT_FLAGS = -DLAB2

然后在你的代码中

    #if LAB2
        print("Build using lab2.xcconfig")
    #else
        print("Build using some_other.xcconfig")
    #endif
于 2016-08-13T02:44:06.963 回答