在我的新应用程序上遇到一个新问题,
我想在不停止用户音乐的情况下为这个应用程序添加简短的声音,
所以我决定使用 AudioToolBox 而不是 AVAudioPlayer 实例。
我用 :
OSStatus audioFileError;
SystemSoundID beepID;
NSString *pathSound = [[NSBundle mainBundle] pathForResource:@"Win2" ofType:@"wav"];
audioFileError = AudioServicesCreateSystemSoundID((__bridge CFURLRef)[NSURL fileURLWithPath:pathSound], &beepID);
AudioServicesPlaySystemSound(beepID);
AudioServicesPlaySystemSound (kSystemSoundID_Vibrate);
尽管如此,它只适用于 iPhone 4 设备而不适用于 iPhone 5,振动正常但没有声音播放。
有人能帮我吗 ?非常感谢 !