objective c - How do I set up NSZombieEnabled in Xcode 4? -
How do I set up NSZombieEnabled
and CFZombieLevel
for my executable Can i Excode 4
press excl. 4.x
⌥ ⌘ r
(or click on menu bar
product
Select the "Diagnostics" tab and click on "Enable Zombie Object":
> edit the scheme
)
This released items varies in NSZombie examples, which again When used The console prints the alerts. This is a debugging help that increases memory usage (no object is actually released) but improves error reporting
A special case occurs when you leave an object and you Do not know that:
- With zombie:
- [UITableView release]: Message
- Sent without zombie:
When you store apps for App Store submission Rte it is ignored Xcode settings are. You do not have to touch anything before releasing your application.
Pressing ⌥⌘R is similar to choosing a product - run while holding down the Alt key.
Clicking the "Enable Zombie Objects" checkbox is similar to adding "NSZombieEnabled = YES" to the "Environment variable" section of Tab Logic.
Comments
Post a Comment