-1

我知道已经有很多问题与此有关,并且我已尝试关注它们,但我仍然无法弄清楚问题所在。

我已启用 NSZombiesEnabled,但收到错误消息:

2011-08-15 23:13:12.368 appName[3926:207] *** -[CFString release]: message sent to deallocated instance 0x4cf4570

如果我在错误后键入bt,我会得到这个堆栈跟踪:

#0  0x00f92657 in ___forwarding___ ()
#1  0x00f92522 in __forwarding_prep_0___ ()
#2  0x00f3804c in CFRelease ()
#3  0x00f5d18d in _CFAutoreleasePoolPop ()
#4  0x007a53eb in -[NSAutoreleasePool release] ()
#5  0x0004e3ee in _UIApplicationHandleEvent ()
#6  0x0125a992 in PurpleEventCallback ()
#7  0x01002944 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ ()
#8  0x00f62cf7 in __CFRunLoopDoSource1 ()
#9  0x00f5ff83 in __CFRunLoopRun ()
#10 0x00f5f840 in CFRunLoopRunSpecific ()
#11 0x00f5f761 in CFRunLoopRunInMode ()
#12 0x012591c4 in GSEventRunModal ()
#13 0x01259289 in GSEventRun ()
#14 0x00051c93 in UIApplicationMain ()
#15 0x00002739 in main (argc=1, argv=0xbfffefd8) at main.m:14

我假设这条线正在解释问题,但我真的不确定:

#7  0x01002944 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ ()

我想我可能会迷失何时应该释放对象。我尝试在每个使用alloc的方法结束时执行 [object release] ,然后在dealloc方法中我释放了该类的所有属性。

我需要做什么?

4

1 回答 1

0

您的应用程序中有一个字符串已过度释放。由于释放自动释放池时会出现问题,因此您会意外释放自动释放的对象。以下是可能导致此问题的示例:

NSString *autoString = [NSString stringWithFormat:@"A formatted string! %d", 0];

//use string

[autoString release];//This will cause a crash about the same place your crash is

在没有任何相关代码的情况下,我所能做的就是提供它作为您在代码中查找问题的模式。

于 2011-08-15T22:32:52.303 回答