我正在尝试在我的 iphone 应用程序中播放一个简短的警报声,我正在使用我找到的这段代码,但它不会播放任何声音。
NSString *toneFilename = [[NSBundle mainBundle] pathForResource:@"alarm" ofType:@"wav"];
NSURL *toneURLRef = [NSURL fileURLWithPath:toneFilename];
SystemSoundID Sound;
AudioServicesCreateSystemSoundID(
(__bridge CFURLRef) toneURLRef,
&camerSound
);
AudioServicesPlaySystemSound(Sound);
当我尝试使其振动时,它可以工作:
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate);
谢谢