1

如何判断一个对象是否已被释放?

如果 UITableViewCell 已经移出屏幕, kkcell 对象将被 UITableView 自动释放。

当 audioPlayer 结束时,程序调用“[kkcell stopSpeakAmination]”,但这会导致程序崩溃。

- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag{

    [kkcell stopSpeakAmination];
    playing=NO;
}

我也用

if(kkcell)

或者

if(kkcell!=nil)

但它仍然崩溃。

这是我正在使用的更多代码:

//KKMessageCell2.m
....
@property(nonatomic, retain) UIImageView *SenderVoiceNodePlaying;
@property(nonatomic, retain) UIImageView *ReceiverVoiceNodePlaying;
....

-(void)stopSpeakAmination{
    [self.SenderVoiceNodePlaying stopAnimating];
    [self.ReceiverVoiceNodePlaying stopAnimating];
}

-(void)speakAminationOnRight:(UIButton*)btn{

    //rightside
    NSArray *speekImageAry = [[NSArray alloc]initWithObjects:
    [UIImage imageNamed:@"SenderVoiceNodePlaying001"],
    [UIImage imageNamed:@"SenderVoiceNodePlaying002"],
                          [UIImage imageNamed:@"SenderVoiceNodePlaying003"], nil];


    self.SenderVoiceNodePlaying.animationImages = speekImageAry; 
    self.SenderVoiceNodePlaying.animationDuration = 1.0; 
    self.SenderVoiceNodePlaying.animationRepeatCount = 0; 
    [self.SenderVoiceNodePlaying startAnimating];

    NSString *fileName=btn.titleLabel.text;
    fileName=[fileName substringFromIndex:10];
    KKMessageCell2 *cell=(KKMessageCell2*)[btn superview];
    [[NSNotificationCenter defaultCenter]postNotificationName:@"nPlayAmr"
                                    object:nil userInfo:[NSDictionary dictionaryWithObjectsAndKeys:
                                                         fileName,@"fileName",
                                                         cell,@"cell",nil]];
}

//KKMessageCell2.m
....

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"msgCell";
    NSDictionary *dict = [messages objectAtIndex:indexPath.row];
    KKMessageCell2 *cell = [[[KKMessageCell2 alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:identifier] autorelease];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    [cell setCellView:dict andMy_avatar_url:self.my_avatar_url];
    [cell.avatarLeftImageButton addTarget:self action:@selector(pushToUserDetail:) forControlEvents:UIControlEventTouchUpInside];
    [cell.avatarRightImageButton addTarget:self action:@selector(pushToUserDetail:) forControlEvents:UIControlEventTouchUpInside];
    [cell.chatphoto addTarget:self action:@selector(photoClick:) forControlEvents:UIControlEventTouchUpInside];
    return cell;

}

- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag{

    [kkcell stopSpeakAmination];
    playing=NO;
}
4

2 回答 2

1

将您的项目转换为 ARC。它比您想象的要容易和自动化得多。我已经转换了大约 3 个在开发中期相当大且从未出现任何问题的现实生活项目(留出一小时来完成它,您可能不需要那么多时间,而且绝对值得)

在 Xcode 中,选择编辑->重构->转换为 Objective-C ARC

您也可以在线找到教程,但总体而言非常简单。

于 2013-11-05T20:06:50.987 回答
0

您的程序很可能崩溃,因为该对象确实已完全释放,但这并不意味着kkcell它将被设置为nil,因此您的检查失败,kkcell是“悬空的”。

要回答您的具体问题,测试发布的一种方法是覆盖dealloc,如

-(void)dealloc
{
    NSLog(@"deallocated");
    [super dealloc];
}

这可以通过告诉您最终发布的确切时间来帮助您进行故障排除。

于 2013-11-05T20:13:35.870 回答