please forgive the total newbie here - I am running an app in the simulator, and sometimes when it crashes it posts useful info in the console, other times absolutely nothing. When it posts nothing, what would be good steps to follow to start tracking down the cause of the crash?

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

First of all open the debugger after the crash and look at the stacktrace.

In addition to that you could enable NSZombieEnabled for the executable when those vague bad access errors show up.

Debugger with stacktrace(top left window), XCode3

enter image description here

Stacktrace Xcode4

enter image description here

link|improve this answer
+1 for screenshots of both Xcode 3 and 4. – Jasarien Apr 21 '11 at 9:19
NSZombieEnabled is great. It can really save you on some of these random inexplicable crashes. – Dancreek Apr 21 '11 at 20:25
feedback

I can continuously reproduce this kind of behavior with our app. It uses ARC so im pretty sure nothing gets over released, and we have zombies enabled. Xcode will say "Paused" instead of displaying a list of threads, the "Continue" button is active, but doesn't do anything, and entering bt on the (gdb) prompt says No stack.

This is driving me crazy!

link|improve this answer
feedback

Determine on what event the app is crashing. For exapmple if the app is crashing on the click of a UIButton, you can put a breakpoint on the action and step through code lines to see on which line the crash happens. Sometimes when there is no crash log on the crash of app, debugging through this method, does prove to be helpful.

I suppose this is a memory issue.

link|improve this answer
1  
I'm sure its a memory/threading issue, but we have way too much code to put in break points. Is there any other way please? – Maciej Swic Jul 28 '11 at 14:09
@Maciej Swic: Same problem with me pal. My app crashes after some 5 lines of memory warning logs with level 1 and 2 :( Any other way please? – mysticboy59 Aug 5 '11 at 9:01
feedback

sometimes it happens to me as well.. the app crashes without any error message getting posted in the logs.. 95% of the time it is because I would be not be releasing something or would be releasing something and accessing it( which would usually create a log)... go through your code and see whether you are releasing properly and using autorelease option where needed...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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