从代码中获取 xcconfig 配置文件名

Getting xcconfig configuration file name from code

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

如下图我想知道配置是"Lab2"

这是一种阅读方式...

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

OTHER_SWIFT_FLAGS = -DLAB2

然后在您的代码中

    #if LAB2
        print("Build using lab2.xcconfig")
    #else
        print("Build using some_other.xcconfig")
    #endif