我的音频有问题。
这是代码:
AVAudioPlayer *audioPlayer;
NSString *audioPath = [[NSBundle mainBundle]pathForResource:@"Cheering" ofType:@"mp3"];
NSURL *audioURL = [NSURL fileURLWithPath:audioPath];
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:audioURL error:nil];
[audioPlayer play];
它不会这样玩。代码通过就好了,但没有音频。如果我在最后一行打断然后单步执行,它会正常播放。我已经尽我所能让它发挥作用,但不知道从哪里开始。
它的行为就像在播放命令之前需要延迟一样。