-[NSThread _nq:]: message sent to deallocated instance 0x1fdf5040
(lldb)
这是我的应用程序进入后台时遇到的一次崩溃。在 iphone 4 中它正在工作。它发生在 iphone 5 中。有什么可能性以及我们如何解决它?
-[NSThread _nq:]: message sent to deallocated instance 0x1fdf5040
(lldb)
这是我的应用程序进入后台时遇到的一次崩溃。在 iphone 4 中它正在工作。它发生在 iphone 5 中。有什么可能性以及我们如何解决它?
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
首先感谢您的帮助。
我自己解决了我的问题并为你分享。对我来说,它发生了一些在后台运行的线程。当应用程序进入后台时,该线程失去了目的地。这使应用程序崩溃。
一些我如何做线程等到完成的方式在任何地方都没有,一切正常。