我试图在OS x上使用AVAudioPlayer
播放声音(不是iOS!)。我使用以下代码:
AVAudioPlayer *player;
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:name ofType:@"mp3"];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
player = [[AVAudioPlayer alloc] initWithContentsOfURL:
soundFileURL error:&err];
if( err ){
NSLog(@"Failed with reason: %@", [err localizedDescription]);
}
else{
player.delegate = self;
player.numberOfLoops = -1;
player.currentTime = 0;
player.volume = 1.0;
[player play];
}
一切正常,播放器调用播放功能而没有错误。但是之后我听不到任何声音。我确定我的音频文件没问题,因为我可以使用NSSound
课程来播放它。我想使用AVAudioPlayer
的原因是,当我使用NSSound
课程并且我在循环中播放它之间会有短暂停顿,这就是我想尝试的原因AVAudioPlayer
。
答案 0 :(得分:1)
将*player
定义为property
,以便在方法完成后不会消失。