我正在尝试在我的应用程序的背景中播放音频文件,但它没有播放。我拥有的代码是:
SystemSoundID SoundID;
NSString *soundFile = [[NSBundle mainBundle] pathForResource:@"HoHey" ofType:@"mp3"];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:soundFile], &SoundID);
AudioServicesPlaySystemSound(SoundID);
NSLog(@"%@ is playing\n", soundFile);
NSLog 显示“HoHey.mp3 正在播放”,但我听不到它在播放。顺便说一句,我的音量调高了,因为我在播放视频时会听到播放的声音。有任何想法吗?