Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having a hard time tracking down a crash in an iPad application. The difficulty really stems from the fact that there is no errors or stack trace present when the application fails. It simply goes away like Keiser Soze, "And like that, poof. He's gone.".

I've replicated the crash on both the simulator and the device. There are zero device logs, nothing in the console, etc.

I know that during the crash some CoreGraphics operations are occurring in a background thread. Typically, three or so NSOperations are kicking of some image blends.

The blending consists of CGContext* calls (DrawImage, SetBlendMode, SetAlpha, etc). The NSOperation calls back to a delegate in the main thread to handle the image and set it to UIImage, so it shouldn't be a UI main thread conflict, but I'm not discounting anything at this point.

Are there some Xcode tricks I'm missing to track down exactly what is happening? Or at least get a better hint of where the problem lies?

EDIT I have run the app in Instruments tracking memory usage and see that it is pretty rock steady around 2MB. So, don't think it's a memory issue. But after consideration, this rock steady 2MB seems abnormally low. Is there a chance Instruments is not picking up the CoreGraphics allocations?

share|improve this question
1  
I've never done any iOS development, but when iOS apps started crashing on me (and not leaving any logs), it ended up being a low memory issue: closing all apps and rebooting the device cleared up everything. – Ken Jan 26 '11 at 21:44
@Ken - added an edit related to low memory. Thanks. – MarkPowell Jan 26 '11 at 21:50
Make sure you aren't just running the app, but debugging it. To verify, make sure Breakpoints are on. – Evan Mulawski Jan 26 '11 at 21:57
2  
Re: low memory. Try sticking an NSLog or breakpoint in the applicationDidReceiveMemoryWarning delegate method, just to rule it out. Actually, it might be the case that XCode would output something to the console in this case, anyway. – Dave Jan 26 '11 at 23:32
2  
Same situation here, app crashes but there's no crash log, debugger not stopped. No idea what's going on. According to Instruments memory consumption looks fine. – Michal Jul 8 '11 at 13:15
show 2 more comments

1 Answer

up vote 3 down vote accepted

For lack of a better solution, and if it isn't obvious, pepper your app with NSLogs to circle where this occurs, then drill deeper from there via breakpoints and/or additional logs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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