如何使用 XCode 4 在 iPhone 可执行文件中设置环境变量?
自从切换到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
另一种方法是单击方案下拉栏 ->编辑方案->参数选项卡,然后在环境变量列中添加 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...
请看这个答案:
如何在 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
如果您想在自己的代码中对环境变量的值进行操作,请使用以下命令:
Edit Scheme.../Run/Arguments/Environment
是编辑 Xcode 运行的环境变量的位置。If you want act on the value of environment variable in your own code, use the following:
Edit Scheme... / Run / Arguments / Environment
is where to go to edit the environment variables for runs from Xcode.