繁体   English   中英

音频播放器可在模拟器中工作,但不能在iOS设备上工作

[英]Audio player works in simulator but not on iOS device

我有以下代码初始化:

NSString *path = [NSString stringWithFormat:@"%@/test.mp3", [[NSBundle mainBundle] resourcePath]];
NSURL *soundUrl = [NSURL fileURLWithPath:path];
_audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];

然后一个按钮启动播放器

[_audioPlayer play];

因此,当我在模拟器上时,它工作正常,但在我的设备上不起作用。

在您的应用包中获取文件路径的正确方法如下:

NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp3"];

但是,如果您实际上想要一个NSURL ,请使用以下代码直接获取它:

NSURL *soundUrl = [[NSBundle mainBundle] URLForResource:@"test" withExtension:@"mp3"];

而且,模拟器不区分大小写,但实际设备却区分大小写。 确保您的文件的名称真实为test.mp3而不是Test.mp3类的Test.mp3 更新代码中的名称以匹配实际的文件名。

使用调试器确保soundURL不为nil 如果不是,但是音频播放器仍然无法工作,请使用error参数查看原因:

NSError *error = nil;
_audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:&error];
if (!_audioPlayer) {
    NSLog(@"Unable to create audio player: %@", error);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM