在 Xcode 构建过程中更改应用程序设置
我有配置文件(如 plist),其中包含应用程序用于连接到 Web 服务的信息。出于显而易见的原因(不同的 URL),我为每个部署域(DEV、生产)都有一个文件。所以我的项目中的每个域都有 plist,例如 1.myConfig.dev.plist 2. myconfig.prod.plist
我有多个目标 - 一个对应于我正在构建的每个域。在目标中,我有将文件重命名为 myConfig.plist 的脚本。所有这些工作正常。然而我想知道是否有一种更简单的方法来做到这一点而不是有多个目标。
I have config files (as plist) that contain information used by the app to connect to web services. I have a file for each of our deployment domains (DEV, PRODUCTION) for obvious reasons(different URLs). So I have plist for each domain in my project e.g
1. myConfig.dev.plist
2. myconfig.prod.plist
I have multiple targets - one for each domain that I am building for. In the target I have scripts that rename the file to myConfig.plist. All these work fine. However I was wondering if there was an easier way to do this instead of having multiple targets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XCode 4 的新构建方案并拥有自定义环境变量。
You can use XCode 4's new build schemes and have custom environment variables.