我一直使用音频工具箱播放我的声音,但用户说没有声音,这是因为当您处于静音状态时它不会播放。我已经尝试过很多次换成 av 基础,但它对我来说从来没有用过。这是我现在尝试使用的代码:
- (IBAction)soundbutton:(id)sender {
NSString *path = [[NSBundle mainBundle] pathForResource:@"EASPORTS" ofType:@"mp3"];
AVAudioPlayer * theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
[theAudio play];}