How do I set up NSZombieEnabled and CFZombieLevel for my executable in Xcode 4?
feedback
|
|
In Xcode 4.x just press ⌥⌘Rselect the "Diagnostics" tab and click "Enable Zombie Objects":
This turns released objects into NSZombie instances that print console warnings if used again. This is a debugging aid that increases memory use (no object is really released) but improves error reporting. A typical case is when you over-release an object and you don't know which one:
This Xcode setting is ignored when you archive the application for App Store submission. You don't need to touch anything before releasing your application. ⌥⌘R is the menu shortcut for selecting Product, keeping alt pressed, and clicking "Run...". Clicking "Enable Zombie Objects" is the same as manually adding "NSZombieEnabled = YES" in the section "Environment Variables" of the tab Arguments. | |||||||||||||||
feedback
|
|
Jano's answer is the easiest way to find it.. 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... | |||
|
feedback
|
|
I find this alternative more convenient:
As soon as a zombie is detected you then get a neat "Zombie Stack" that shows you when the object in question was allocated and where it was retained or released:
Advantages compared to using the diagnostic tab of the Xcode Schemes:
| |||||
feedback
|
|
in xcode 4.2 project name/edit scheme/Diagnostics/ enable zombie objects check box your done | |||
|
feedback
|

