6

当我在启用了僵尸的 xcode 4.5.1 (LLDB) 调试器中运行不使用 ARC 的应用程序时,在调用 -[super dealloc] (-[NSObject dealloc]) 时出现两次此错误 (2):

* -[V2APIClient 类]:发送到已释放实例 0x9d865c0 的消息 * -[V2APIClient 类]:发送到已释放实例 0x9d865c0 的消息

当我在 xcode 4.4.1 (LLDB) 调试器中运行相同的应用程序时,我会收到一次错误消息 (1)。当我在 XCode 4.3.2 中运行同一应用程序的稍早版本时,我根本没有收到错误消息 (0)。我将使用相同/最新的代码重试。

仅供参考 - 这似乎与其他帖子完全相同,尚未得到回答: -[Foo class]: message sent to deallocated instance on [super dealloc]

我试图避免两次重新发布相同的问题,但建议我继续: https ://meta.stackexchange.com/questions/152226/avoiding-asking-a-question-thats-already-been-asked

另外,我也刚刚在 Apple 开发者论坛中问了同样的问题: https ://devforums.apple.com/thread/171282

最后,这是我的课的精髓:

@interface ASIHTTPRequestHandler : NSObject {
  id _error;
}
@property (nonatomic,retain) id error;
@end

@implementation ASIHTTPRequestHandler
@synthesize error = _error;
-(id)init
{
    self = [super init];
    if (self)
    {
        self.error = nil;
    }
    return self;
 }

 -(void)dealloc
 {
     self.error = nil;
     [super dealloc];// this is the line that appears to cause the problems
  }
  @end

请帮我解决这个问题。我不相信我违反了任何内存管理规则,但这个错误似乎暗示了其他情况。在解决这个问题之前,我很犹豫要不要签入任何新代码。

谢谢,查克

ps 为了记录,这里是调用代码:

PanoTourMgrAppDelegate *ptmAppDlgt = [PanoTourMgrAppDelegate getApplicationDelegate];
Settings *settings = ptmAppDlgt.settings;
Identification *identification = ptmAppDlgt.identification;
V2APIClient *v2ApiClient = [[V2APIClient alloc] initWithSettings:settings identification:identification];
NSDictionary *result = [v2ApiClient get_application_status];
BOOL success = [v2ApiClient callWasSuccessful:result];
if (!success)
{
    id error = v2ApiClient.error;
    NSString *mbTitle = nil;
    NSString *mbMessage=nil;
    if ([error isKindOfClass:[NSString class]])
    {
        mbTitle = @"Application version no longer suppported";
        mbMessage = (NSString*)error;
        [MessageBox showWithTitle:mbTitle message:mbMessage];
    }
}
[v2ApiClient release]; // This is the line that indirectly causes the messages above
4

2 回答 2

3

如果您正在向已释放的实例发送消息,那是因为您没有正确管理内存。你有没有被保留平衡的释放;过度释放。

首先,对您的代码进行“构建和分析”。修复发现的任何问题。

接下来,在启用了僵尸检测的 Instruments 下运行并打开引用计数跟踪功能。然后,当它崩溃时,检查相关对象的所有保留/释放事件。你会发现一个额外的版本。挑战在于将保留插入正确的位置以平衡释放。

(正如 Rob 正确指出的那样,这可能只是额外调用释放的情况。)

于 2012-10-22T19:38:10.377 回答
1

这是某些 Xcode 版本的调试器中的错误。

我刚刚在 Xcode 4.4.1 中拥有它,但它不在 Xcode 4.6 中。为了解决这个问题,我创建了一个新的“单一视图应用程序”项目,在方案对话框中打开“启用僵尸对象”,并在视图控制器中运行以下代码,并在最后一行设置断点。

- (void)viewDidLoad {
    [super viewDidLoad];

    NSObject *object = [[NSObject alloc] init];
    [object release];

}

这会在调试器中产生以下消息:

-[NSObject 类]:发送到已释放实例 0x6a7e330 的消息

您还可以看到调试器的变量部分中的对象现在将其类描述为_NSZombie_. 如果删除断点,则不再显示消息。class正确释放对象后,调试器会调用该方法。

于 2013-02-06T16:41:09.407 回答