XCode 项目 - 每个开发人员唯一服务器地址的宏

发布于 2024-10-26 00:49:39 字数 209 浏览 5 评论 0原文

当我开发一个与笔记本电脑上运行的 Rails 应用程序交互的 iPhone 应用程序时,我会做类似的事情,

    model.serverIp = @"192.168.0.23";

我将提交此内容,下一个人检查它,并将其更改为他的 IP 地址,然后提交,然后我必须改变它......

避免踩到彼此脚趾的最好方法是什么?

As I develop an iPhone app that speaks to a Rails app running on my laptop, I'll do something like,

    model.serverIp = @"192.168.0.23";

I'll commit this, and the next guy checks it out, and changes it to his IP address, and then commits, and then I have to change it........

What's the best way to avoid stepping on each other's toes here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫负雪 2024-11-02 00:49:39

出于开发目的,执行以下操作之一可能就足够了:

  • 指定未签入的外部文件,其中包含相关 IP 地址并作为资源文件添加到 iPhone 应用程序
  • 将代码添加到应用程序,以便它可以识别 IP 地址自动
  • 使用环回地址(假设测试服务器始终与iPhone应用程序运行在同一台机器上)
  • 部署一个具有固定IP地址的公共服务器供大家使用

For development purposes it may suffice to one of several things:

  • Specify an external file that is not checked in which contains the relevant IP address and is added as a resource file to the iPhone app
  • Add code to the application so it can discern the IP address automatically
  • Use a loopback address (assuming the test server is always running on the same machine as the iPhone app)
  • Deploy a common server with a fixed IP address for everyone to use
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文