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

时间:2016-08-12 21:45:48

标签: ios objective-c swift xcode xcconfig

代码中是否有一种方法可以获取正在使用的.xcconfig文件的名称?

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

enter image description here

1 个答案:

答案 0 :(得分:1)

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

编辑Lab2.xcconfig文件并添加此

OTHER_SWIFT_FLAGS = -DLAB2

然后在你的代码中

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