无法访问构建设置

时间:2015-10-19 18:01:16

标签: ios xcode build-settings

这是我配置文件中的一个条目...

enter image description here

这在构建设置中正确选取...

enter image description here

我在项目的两个Info.plist文件中引用了该设置...

enter image description here

但是在执行测试目标时,值不存在......

enter image description here

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

代码看错了。

这个答案给了我解决方案......

https://stackoverflow.com/a/30687916/221683

这是我用的代码......

let urlString = NSBundle(forClass: self.dynamicType).objectForInfoDictionaryKey("WebServiceUrl") as? String

我只需要在Info.plist中输入我的测试目标,这是上面代码的定义。

此外,我并不需要围绕配置文件中的值引用。