Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在代码中获取正在使用的 .xcconfig 文件的名称?
如下图所示,我希望能够找出配置是“Lab2”
这是阅读它的一种方式...
编辑您的 Lab2.xcconfig 文件并添加它
OTHER_SWIFT_FLAGS = -DLAB2
然后在你的代码中
#if LAB2 print("Build using lab2.xcconfig") #else print("Build using some_other.xcconfig") #endif