Xcode:Swift - 如何根据执行环境声明具有不同值的变量/常量?

时间:2015-03-18 20:17:36

标签: ios xcode debugging swift release

我试图弄清楚如何处理不同环境的变量/常量,例如开发(或调试)和发布。例如,在执行单元测试时,Web服务的url应指向localhost,但在最终产品中,它应指向public api host。

我已经阅读了一些关于将Swift编译器 - 自定义标志调试设置设置为-DDEBUG然后在代码中声明变量的内容:

#if DEBUG
  let url = "http://localhost"
#else
  let url = "https://api.example.com"
#endif

但那没用。运行单元测试时,网址永远不会设置为http://localhost。我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:2)

编辑项目方案......

enter image description here

定义您的环境变量: enter image description here

最后检查是否为您正在处理的架构定义了:

var baseURL:String{
    get{
        if let _ = ProcessInfo().environment["LOCAL_MOCK_SERVER"]{
            return "http:/localhost:3000"
        } else{
            return "https://api.fixer.io"
        }

    }
}