简体   繁体   中英

Getting xcconfig configuration file name from code

Is there a way in code to get the name of the .xcconfig file being used?

As in the picture below I would like to be able to find out the configuration is "Lab2"

在此处输入图片说明

This is one way to read it...

Edit your Lab2.xcconfig file and add this

OTHER_SWIFT_FLAGS = -DLAB2

and then inside your code

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM