如何在 Xcode 4 中关闭 NSZombieEnabled
我刚刚迁移到 Xcode 4,并且在 Xcode 3 中为我的应用程序激活了僵尸。我使用了以下方法:
转到项目 ->编辑活动的可执行文件 单击参数 单击“要在环境中设置的变量”部分中的 + 在名称列中输入 NSZombieEnabled,在值列中输入 YES。 确保选中 NSZombieEnabled 条目的复选标记。
现在我想确保它对于我的应用程序来说是关闭的,但不明白如何在 XCODE4 中检查/执行此操作,任何人都可以分享一些关于这一点的信息吗?
I have just migrated to Xcode 4 and i had zombie activated in Xcode 3 for my app. I used the following method:
Go to Project -> Edit Active Executable
Click Arguments
Click + in the "Variables to be set in the environment" section
Enter NSZombieEnabled in the Name column and YES in the Value column.
Make sure the checkmark for the NSZombieEnabled entry is checked.
Now i want to make sure it is off for my application but do not understand how to check/do that in XCODE4, anyone that can share some light on that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要编辑环境变量,请转到“菜单产品/编辑方案...”,首先从左侧边栏中选择所需的配置(您可能需要“运行”),然后单击“参数”选项卡。环境变量可以在那里配置。
To edit environment variables, go to Menu Product / Edit Scheme…, select the desired configuration (you probably want 'Run') from the left sidebar first and then click on the Arguments tab. Environment variables are configurable there.