如何使用 XCode 4 在 iPhone 可执行文件中设置环境变量?

发布于 2024-10-22 10:54:26 字数 152 浏览 1 评论 0原文

自从切换到 XCode 4 以来,我一直在寻找如何在 iPhone 可执行文件中设置环境变量(例如 NSZombies)时遇到问题。在 XCode 3 中,您可以右键单击 .app 文件,选择“获取信息”并设置环境变量。但在 XCode 4 中似乎不可能做到这一点。它在新 UI 中的哪里?

Since switching to XCode 4, I have been having issues finding how to set environment variables (such a NSZombies) in iPhone executables. In XCode 3, you could right-click on your .app file, select "Get Info" and set environment variables. But it doesn't seem possible to do this in XCode 4. Where is it in the new UI?

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

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

发布评论

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

评论(3

淡淡離愁欲言轉身 2024-10-29 10:54:26

另一种方法是单击方案下拉栏 ->编辑方案->参数选项卡,然后在环境变量列中添加 NSZombieEnabled,在值列中添加 YES...

another way would be if you click on the scheme drop down bar -> edit scheme -> arguments tab and then add NSZombieEnabled in the Environment Variables column and YES in the value column...

墨落成白 2024-10-29 10:54:26

请看这个答案:
如何在 Xcode 4 中设置 NSZombieEnabled?

编辑:您还可以从以下位置转到此菜单:产品 =>编辑方案

Please see this answer:
How do I set up NSZombieEnabled in Xcode 4?

EDIT: You can also go to this menu from Product => Edit Scheme

山有枢 2024-10-29 10:54:26

如果您想在自己的代码中对环境变量的值进行操作,请使用以下命令:

NSDictionary *env = [[NSProcessInfo processInfo] environment];

Edit Scheme.../Run/Arguments/Environment 是编辑 Xcode 运行的环境变量的位置。

If you want act on the value of environment variable in your own code, use the following:

NSDictionary *env = [[NSProcessInfo processInfo] environment];

Edit Scheme... / Run / Arguments / Environment is where to go to edit the environment variables for runs from Xcode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文