Tagged Questions

NSZombie is an Apple OS-specific (OSX and iOS) reference to the zombie process. Similar to other zombie processes, when enabled, NSZombie represents an object that has completed execution and has been released, but is later accessed again, usually causing an EXC_BAD_ACCESS error.

learn more… | top users | synonyms

174
votes
4answers
30k views

How do I setup NSZombieEnabled in Xcode 4?

How do I set up NSZombieEnabled and CFZombieLevel for my executable in Xcode 4?
70
votes
11answers
22k views

How to enable NSZombie in Xcode?

I have an app that is crashing with no error tracing. I can see part of what is going on if I debug, but can't figure out which object is "zombie-ing". Does anybody know how to enable NSZombie in ...
10
votes
7answers
6k views

NSZombieEnabled does not work

When I set NSZombieEnabled = Yes nothing is written to the console. How can I fix this? Or can you advise me any other tools for an EXC_BAD_ACCESS?
9
votes
0answers
21k views

How to use NSzombie in xcode? [closed]

Possible Duplicate: How to enable NSZombie on Xcode 4? My application is crashing a lot! How do I find the error through NSZombie? Could someone give me step by step instructions to use ...
8
votes
4answers
2k views

What is NSZombie?

I've seen suggestions saying to set NSZombieEnabled to true while debugging. What is NSZombie? Is it a framework? A setting?
7
votes
1answer
3k views

In App Purchase Crashes on [[SKPaymentQueue defaultQueue] addPayment:payment]

My In App Purchases work. I present a ModalView with a "Buy" UIButton. You click the button and the In App Purchase goes through the process. You can even do it several times in a row. The problem ...
6
votes
3answers
423 views

Overrelease issue with block-captured objects; retain count jumps straight from +2 to 0!

I'm confused by an occasional crash that I'm seeing, which, according to the Zombies instrument, is caused by the over-release of some dictionary values. When I look at the object history for one of ...
4
votes
1answer
75 views

Obscure NSZombie console log

I tried searching on google, and got literally no results when trying to figure out what this means. My console is logging: objc[17048]: Class _NSZombie_GEOLatLng is implemented in both ?? and ??. ...
4
votes
2answers
3k views

How to set environment variables in iPhone executable using XCode 4?

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 ...
4
votes
2answers
67 views

iphone memory management strange issue

This is a piece of code I had written in xcode Foo * myFoo = [[Foo alloc] init] ; [myFoo release] ; [myFoo printMessage] ; If I am right, it should give a runtime error when printmessage function ...
4
votes
3answers
2k views

How to debug EXC_BAD_ACCESS that occurs only on release target for an iPhone app?

I'm developing an iPhone application. I have an EXC_BAD_ACCESS that occurs only in the release target; when I build the debug target the exception does not occur. However, when I set the ...
3
votes
1answer
1k views

How to turn off NSZombieEnabled in Xcode 4

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 ...
3
votes
1answer
2k views

XCode - iPhone SDK Zombies

Is NSZombiesEnabled supported when debugging applications built with a target of the iPhone SDK 3.x? Also if it is supported, is there anywhere I can get a list of the possible levels supported?
2
votes
2answers
68 views

ARC with zombies - Why do objects in instance variables not get released when owning object is deallocated?

In a project using ARC with zombie objects enabled, if an object holds a strong reference to another object when it is deallocated, that other object does not get released. This code demonstrates the ...
2
votes
2answers
58 views

Retained property being deallocated

I am fairly new with Objective-C memory management and although I thought I understood it, I have a problem that I cannot manage to solve. I have this property: @property (nonatomic, retain) NSDate ...
2
votes
3answers
592 views

How do you enable NSZombie in Instruments of Xcode 4.1 under Lion?

This is ONLY regarding the new Xcode 4.1, specifically running on Lion. How do you enable NSZombie in Instruments ? It is no longer in Allocations in the (i) icon under Launch Configuration as in ...
2
votes
1answer
295 views

Objective C: Where to find <process id> in gdb?

I am trying to debug my program using NSZombie. The debugger did return me the address of the instance with the issue, however I am not sure where to obtain the pid which is required to run the ...
2
votes
1answer
279 views

iOS 4.2 OS is calling viewDidUnload of a Zombie (unallocated class)

I have a set of UIViewControllers that I pile up with a NavigationController. When I get to the last element of this pile, I do a popToRootViewController. If I try to create this pile again (and yes, ...
2
votes
2answers
292 views

XCode Zombies shows CFArray increasing Live Bytes

I've not used Zombies before, and must admit I'm not that sure what it's doing. However, one thing concerns me: CFArray seems to be continually increasing its Live Bytes and # Living columns, along ...
2
votes
1answer
930 views

Debugging over-released objects, problem with NSZombie

EDIT: I have found the cause of this crash! bbum pointed out that buffer overflows are a very common cause for this, so I looked at the only buffer type malloc I had: closedList = (AINavigationCell ...
2
votes
2answers
144 views

breakpoint to cause iOS app to stop immediately when messaging a zombie object?

I have a memory management bug in my iOS app. I have set NSZombieEnabled, and the "message sent to deallocated object" message duly appears in the console. But execution appears to go past the point ...
2
votes
1answer
1k views

arrayWithContentsOfFile: results in crash

I am creating an application and I get an EXC_BAD_ACCESS error. CODE @interface DNProjectsCategory : DNCategory { NSArray *projects; } @property(nonatomic, retain) NSArray *projects; @end ...
2
votes
2answers
399 views

How to use Zombie while debugging iPhone application?

How to use Zombie while debugging iPhone application?
2
votes
4answers
3k views

respondsToSelector send to deallocated object

I try to find out why my app crashes (RSS Reader) if I send a wrong URL to NSXML Parser. I got an EXC_BAD_ACCESS. So after some Searching I found out that I have to use Zombies. So I added the ...
2
votes
1answer
645 views

Can not enable NSZombieEnabled

I am using xcode_3.2.3_and_ios_sdk_4.0.1 and I setup everything the below. To enable it (in xcode) 1. Double-click an executable in the Executables group of your Xcode project. 2. Click the Arguments ...
1
vote
3answers
54 views

two exact same code but one of the code has zombie issue

in rootviewcontroller this code is working fine - (IBAction)gotoAboutGame:(id)sender { aboutGame *aboutGameObj = [[aboutGame alloc]init]; [UIView transitionFromView:self.view ...
1
vote
2answers
61 views

NSTimer getting zombie

I have created a NSTimer in my application which gets fired after every 1 min interval. my problem is when I put the application in background and after some time say 5 min, i bring that in ...
1
vote
3answers
228 views

ASIHTTPRequest and Zombies…

SOLVED (I think): Set ASIHTTPRequest delegate/NSOperationQueue delegate to nil after the vc is popped (in the dealloc). Before I start, this question is similar but not the same. My app is very near ...
1
vote
1answer
61 views

NSZombie stopped working after distribution provisioning profile added

I was using NSZombie just fine to debug my project, but now it fails to show anything at all when I run the Profiler. The only change I have made that would seem to affect this is the addition of an ...
1
vote
2answers
410 views

iOS libsystem_c.dylib strdup memory leak NSZombie not working

Please help me track down an iOS memory leak. Thanks! I'm using xCode 4.0.1 and I tried to activate NSZombie to track a memory leak, but it doesn't seems to work as before, with xCode 3.x I can't ...
1
vote
1answer
255 views

How to use NSZombie?

So I just finished my app and I wanted to as the final few steps run some diagnostics on it. In terms of what its memory usage, allocations, leaks, etc are. I have a few questions: 1) Is there a ...
1
vote
1answer
116 views

Is it possible to use NSZombieEnabled in Monotouch?

I've been reading up about the environmental variable NSZombieEnabled and I wondered whether it is currently possible to use this in a Monotouch runtime? If not, is there a suitable alternative that ...
1
vote
0answers
175 views

_NSZombie_NSKeyValueUndefinedGetter - What is this?

Hey everyone, I'm getting a senseless error when I load an application I'm writing for the first time. Class _NSZombie_NSKeyValueUndefinedGetter is implemented in both ?? and ??. One of the two ...
1
vote
1answer
92 views

Weird memory problem

At some point I allocate a NSMutableData element like this: NSMutableData* data=[[NSMutableData alloc] initWithLength:0]; Later, I do: NSString *dataAsStr = [[NSString alloc] initWithData:data ...
1
vote
2answers
202 views

NSZombie shows empty object

I am experiencing problem and can't find what's wrong. As usual when I saw EXC_BAD_ACCESS message I turned on Instruments with NSZombie activated. When the error occurs and the NSZombie show message: ...
1
vote
1answer
3k views

-[CALayer retain]: message sent to deallocated instance

I'm developing an iphone app and when I turn on my NSZombieEnabled I have regularly a crash on error : *** -[CALayer retain]: message sent to deallocated instance 0xe6012e0 It always come when I ...
1
vote
1answer
621 views

Tracking down EXC_BAD_ACCESS without NSZombie?

I've spent two days on this and I still can't find the cause of the crash. I know it has something to do with trying to access an object that has been freed but I don't know which access or which ...
1
vote
1answer
1k views

Breakpoints get deactivated in Xcode: EXC_BAD_ACCESS when NSZombieEnabled == YES

This question is far outdated, as it was asked for XCode 3. Please don't consider it useful for XCode 4+. =) My app crashes at (seemingly) random events. So, I wanted to add NSZombieEnabled to ...
0
votes
1answer
27 views

What do I do when the NSZombie causing a crash is a class?

So I've just started using Instruments to try to debug my app more in depth as I have recently developed a zombie problem. All was going well up to the point of me realising that the category of the ...
0
votes
1answer
46 views

objects in nsmutablearray becoming zombies

i am developing very simple quiz app In viewDidLoad i am adding objects in myarray where ever i nslog myarray values it works fine but if i try this inside ibaction methods all objects becomes ...
0
votes
1answer
140 views

Unable to see zombie objects in xcode 4.2

I had an app that used to work fine in ios4 and earlier os but I'm now seeing frequent EXC_BAD_ACCESS while trying to run it on the simulator for ios5. Unfortunately, I'm now on xcode 4.2 and I'm ...
0
votes
1answer
67 views

Cannot Identify Zombie Object in iPhone Application

I am a noob making a simple signature capture application for the iPhone. The application is suppost let the user navigate to a table view populated with deliveries. Then, they would click on the ...
0
votes
3answers
95 views

Zombie NSString when called from another object

I can pass basic data between classes, but when I try to pass a NSString* from my UIApplicationDelegate I get an EXC_BAD_ACCESS / NSZombie. Is there something special I have to do to return an ...
0
votes
1answer
65 views

CLLocationManager onClientEventLocation, Zombie

The problem appears when I pressed MKUserTrackingBarButtonItem for tracking user location and then leave the view. Profiler shows zombie: [CLLocationManager onClientEventLocation] I have no ...
0
votes
1answer
58 views

Leak when carrying out operations on annotations in an MKMapView

I've got a method that takes in the annotations (custom PostLocationAnnotation class) to be displayed on a map view and clusters close ones together, outputting an array of MKAnnotation of ...
0
votes
1answer
78 views

Undestanding NSZombie log

I'm trying to track a exc-bad-access. I have run Instruments with NSZombie enabled, I get this error log when the app crashes. There is a UIView which is autoreleased four times, but before the ...
0
votes
0answers
146 views

NSAutoreleasePool drain releases +1 more than the number of sent autorelease messages

I've been having trouble debugging an iPhone app that crashes in a reproducible way. Short story: A custom UIViewController is allocated and pushed onto a UINavigationController's stack. Some time ...
0
votes
1answer
279 views

-[CALayer release]: message sent to deallocated instance

I'm having a problem with some code in the loadView: method of one of my view controllers. Essentially I have a view which centres itself in a larger view (on an iPad) and has some labels, buttons and ...
0
votes
2answers
139 views

Where/If to release properties in a UITableViewCell

EDIT: Ok, so i figured out how to remedy my original problem, but i'm not sure if this is the best way. My new question is, say I have a subclass of UITableViewCell with the following property ...
0
votes
2answers
118 views

Xcode: NSZombie not catching error [closed]

Possible Duplicate: Xcode malloc error My game crashed sometimes due to this message: malloc: *** error for object 0x65cfcd4: incorrect checksum for freed object - object was probably ...

1 2