我目前正在为我的Mac Xcode 7运行最新版本的Xcode以及以下用于播放声音的代码。声音在Mac上的iPhone模拟器中播放,但在iOS 9.0.2设备上没有声音。
SystemSoundID sound;
AudioServicesDisposeSystemSoundID(sound);
NSURL *soundURL = [[NSBundle mainBundle] URLForResource:@"Whip" withExtension:@"mp3"];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)soundURL, &sound);
AudioServicesPlaySystemSound(sound);
当我在Mac上的iPhone模拟器中播放时,此代码有效,但当我尝试在iPhone 5C(iOS 9.0.2)上测试时,没有播放声音。我如何解决这个问题,因为我一直在努力想弄清楚?