如何在XCode 8.3中使用XCCONFIG?

时间:2017-08-16 12:31:17

标签: ios swift xcode swift3 xcconfig

我有一组变量会根据运行它的环境(调试和发布)而变化。

我创建了三个xcconfig文件(常用,调试和发布),请参阅下面每个文件的内容。

Common.xcconfig

BACKEND_URL = https:\/\/www.mydomain.com.br\/api\/v1\/test

Debug.xcconfig

#include "Common.xcconfig"

BACKEND_URL = http:\/\/10.32.112.107:8080\/api\/v1\/test

Release.xcconfig

#include "Common.xcconfig"

我想根据环境在屏幕上显示变量的内容,我不知道在构建中配置使用这些文件的位置。

0 个答案:

没有答案