0
    -[NSThread _nq:]: message sent to deallocated instance 0x1fdf5040
(lldb) 

这是我的应用程序进入后台时遇到的一次崩溃。在 iphone 4 中它正在工作。它发生在 iphone 5 中。有什么可能性以及我们如何解决它?

4

2 回答 2

0

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

http://www.codza.com/how-to-debug-exc_bad_access-on-iphone

How to enable NSZombie in Xcode?

于 2013-05-15T07:44:31.720 回答
0

首先感谢您的帮助。

我自己解决了我的问题并为你分享。对我来说,它发生了一些在后台运行的线程。当应用程序进入后台时,该线程失去了目的地。这使应用程序崩溃。

一些我如何做线程等到完成的方式在任何地方都没有,一切正常。

于 2013-05-15T10:23:48.523 回答