-[NSThread _nq:]: message sent to deallocated instance 0x1fdf5040
(lldb)
This is one crash i am getting while my app enter in back ground. In iphone 4 it was working. it happening in iphone 5. what is the possibility and how we can solve it?
-[NSThread _nq:]: message sent to deallocated instance 0x1fdf5040
(lldb)
This is one crash i am getting while my app enter in back ground. In iphone 4 it was working. it happening in iphone 5. what is the possibility and how we can solve it?
you have to run your project Zombies instrument.For find errors at which class or which object. Hit Command+I to profile the app and select the Zombies instrument (you must be running on the simulator). If you get a zombie, you can display the entire memory history (each retain/release) for that object, which is immensely helpful in tracking down errors.
see this for detail of Zombies
First up all thanks for the helping mind.
I solved my problem my self and sharing for you. For me it happend some thread running in the background. while app entering in the background that thread losing its destination. That made app crash.
Some how i did thread wait until done is NO everywhere and everything works fine.