Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App crashes on iOS5 simulator and on profiler

My app crashes on the iOS 5 iPad simulator after about 5 min of smooth running. This is the only crash reference I get from Xcode, when I try to do a profile run using zombies/memory leak, the app for some reason won't even load (splash-screen shows and then the app crashes), I have no clue what is causing this behavior, any ideas?

error: memory read failed for 0x0

enter image description here

More info: I use ARC, the app works well on iOS6 & iOS7

like image 526
Roy K Avatar asked Oct 08 '13 18:10

Roy K


1 Answers

Try adding an All Exceptions breakpoint to your project.

  1. Open the Breakpoint Navigator (left side of Xcode)
  2. Add Exception Breakpoint.

Run your code again and see if a specific point causes a crash. Without seeing code, it's difficult to provide a specific answer.

Breakpoint

like image 103
Jamie Chapman Avatar answered Nov 14 '22 16:11

Jamie Chapman