vote up 1 vote down star

I have a crash that is happening deep within UIKit for some reason; an EXC_BAD_ACCESS error is happening something like 8 calls deep into a dismissModalViewController call. I tried enabling NSZombieEnabled for my executable, but the console log prints the same error regardless of whether or not zombies are turned on and i don't know which object is causing the issue. Is there something i'm missing that i need to do to get the console to print the correct information?

flag

1  
We really need to see a stack trace on this one. Either you are releasing something in dealloc that is already being freed, or you are calling something that is using something that has been freed, or possibly something else is trying to call back to the dismissed modal view after it has been dismissed. – Kendall Helmstetter Gelner Oct 27 at 20:23

3 Answers

vote up 1 vote down check

Read about using Zombies here.

Run this in gdb. When you get the EXC_BAD_ACCESS look at the stack at that point (use gdb's where command or run the Xcode GUI debugger). If you are still having issues, post the stack in your original question.

Also zombies will only help you if you're dealing with NSObjects. If you're using low level malloc/free routines zombies buy you nothing for those allocations.

link|flag
Your last statement was probably the case. It was something tripping up in the Core Animation code that crashed because some prior actions in the app would stop any animations from happening; luckily some educated guessing allowed me to fix the problem. – Kevlar Oct 28 at 15:41
vote up 1 vote down

One thing I learned last weekend when NSZombieEnabled didn't seem to be working at all - make sure you're not passing in a non-object to some code.

In my case, I was returning an NSString as just "string" instead of @"string". That meant I was overwriting an NSString object with the c-string. When I later tried to write a new value in that object I was getting a BAD_ACCESS. NSZombie's couldn't help b/c it was not an object I was trying to overwrite, but that c-string.

As an aside, treat all warnings as errors in XCode - wish I could make them show up in RED in the IDE GUI - they are easy to miss sometimes.

link|flag
vote up -2 vote down

Sounds like something is over-released in your Modal View Controller. Start by commenting out newish lines until it stops breaking.

link|flag
I know, but that doesn't answer the question of why NSZombieEnabled doesn't work as advertised which would make debugging much simpler. – Kevlar Oct 27 at 18:37
1  
Randomly commenting out "newish" lines is a terribly inefficient way to go about debugging this. – nall Oct 27 at 19:00
Maybe for you, but for how I write my code (less is more), it is quite efficient. – coneybeare Oct 27 at 19:20
1  
Regardless of coding style crashes are best debugged in the debugger. Not by guessing what might be causing the problem. – nall Oct 27 at 19:26
Ya... sorry but you are wrong. In the absence of any useful knowledge from the debugger, this way is very effective. If he only has a crash at his certain place, and there is only a few things he added to the controller until he noticed it breaking, it is not very difficult to comment out the few lines. It is a pain in the ass to trace these down when NSZombieEnabled does not give any useful info. I find them every time in less than 5 minutes by code-inspection/commenting out what I did last. – coneybeare Oct 27 at 20:22
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.