8

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

Roy K
  • 3,319
  • 2
  • 27
  • 43

1 Answers1

2

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

Jamie Chapman
  • 4,229
  • 5
  • 29
  • 47