iPhone开发中使用AVAudioPlayer出现内存泄漏的解决办法

 


最近在使用AVAudioPlayer播放音频时,发现有 内存泄漏的现象,我的代码如下:

-(id)init
{
    if (self = [super init]) {
        NSString *path = [[NSBundle mainBundle] pathForResource:@"GameOver" ofType:@"mp3"];
        NSError *error = nil;
        audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&error];
        audioPlayer.delegate = self;
        [audioPlayer prepareToPlay];
        audioPlayer.numberOfLoops = -1;
        [audioPlayer play];
    }
    
    return self;
}
 
-(void)dealloc
{
    if (audioPlayer && [audioPlayer isPlaying]) {
        [audioPlayer stop];
    }
    
    [audioPlayer release];
    audioPlayer = nil;
    [super dealloc];
}
 

跟踪Instruments工具中的泄漏情况,发现都是在 NSURL或NSData泄漏了,在stackoverflow发现有人这么说(帖子:http://stackoverflow.com/questions/12498015/leak-from-nsurl-and-avaudioplayer-using-arc):


Looks to be a leak in Apple's code... I tried using both

  • -[AVAudioPlayer initWithData:error:] and
  • -[AVAudioPlayer initWithContentsOfURL:error:]

In the first case, the allocated  AVAudioPlayer instance retains the passed in  NSData. In the second, the passed in  NSURL is retained:

也就是说使用AVAudioPlayer播放音频时,NSData或NSURL被retain了,所以,我在dealloc方法中将其release,内存泄漏就解决了:


-(void)dealloc
{
    [audioPlayer.url release];
    
    if (audioPlayer && [audioPlayer isPlaying]) {
        [audioPlayer stop];
    }
    
    [audioPlayer release];
    audioPlayer = nil;
    [super dealloc];
}
 


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值