在swift代码中访问用户定义的设置

时间:2018-04-16 11:41:56

标签: ios swift xcode

我在项目构建设置中添加了用户定义的设置:

enter image description here

enter image description here

如何在我的iOS项目swift代码中访问my_name的值?

1 个答案:

答案 0 :(得分:0)

您误解了User Defined设置。

如果您想通过环境提供特定价值,请使用:

  • 对于Swift:

    其他Swift旗帜:-D my_value

  • 对于Objc:

    预处理器宏:my_value=1

然后在你的代码中你可以做

#if my_value
    some code here
#endif