我正在尝试在iPhone上播放一些音乐文件,但在播放了一些文件后,应用程序崩溃了。它本质上是随机的,我没有得到任何特殊情况可以帮助我吗?
我的代码:
[player stop];
player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"%@",crr_PlayFile] ofType:@""]] error:nil];
[player setDelegate:self];
[player prepareToPlay];
[player play];
我的代码中是否有任何问题。
答案 0 :(得分:0)
尝试
[player release];
player = nil;
在[player stop]
电话之后。