Xcode tools: zombie awareness

I am working on a project that contains a framework that I have built. At runtime, I get EXC_BAD_ACCESS code=1

within my framework. I can usually tell right away what is causing this error in my code, but at the moment it is escaping me. I've read about how to debug this issue in Xcode and everyone seems to suggest using the Zombie tool in tools. I followed these steps:

  • In my application project, I went to Edit Scheme and included zombie objects
  • I went to Xcode -> Developer Tools -> Tools -> and selected "Zombies" (Interesting: it seems to open "Allocations". Confused [thanks to Apple]).
  • In Zombies, I have selected my iPad in the upper left and will select the app.
  • i COMMAND

    + R

    to launch my app and i pressed a button RECORD

    in zombies. He starts collecting data.

enter image description here

Some pink lines are displayed to me that seem to indicate problems. Along with a whole host of gibberish such as Malloc 4.00 KiB

etc.

This makes no sense. I can't see anything that indicates why something in my structure / project was freed.

How do I know why my app is crashing EXC_BAD_ACCESS code=1

with information provided by Zombies?

+3


source to share





All Articles