I am getting a crash in my application which I am not able to trace out. In the log I am getting :
[CFString release]: message sent to deallocated instance 0xeb8a560
Even on debugging I could not trace out the crash. I placed breakpoints and enabled NSZombie but still not helpful. Does anyone have some idea for getting the location of crash?
A string object over released. You can create an exception break point to find where it crashes. Also you can try using
btin GDB to get crash log.This link lots of tricks and tips.