AudioServicesPlaySystemSound不会执行任何操作,但AudioServicesPlayAlertSound会使iPhone震动。

AudioServicesCreateSystemSoundID返回成功。我正在运行iOS4的iPhone3G上进行开发。

有任何想法吗?
彼得

=====

这是我创建声音的方法:

NSString *sndPath = [[NSBundle mainBundle] pathForResource:@"first_touch" ofType:@"wav" inDirectory:@"/"];
CFURLRef sndURL = (CFURLRef)[[NSURL alloc] initFileURLWithPath:sndPath];
int e = AudioServicesCreateSystemSoundID(sndURL, &_firstTouch);  // TODO: call 'AudioServicesDisposeSystemSoundID'

那就是我玩的人:
AudioServicesPlayAlertSound(_firstTouch);

最佳答案

显示一些代码会有所帮助。

猜测是,您正在创建声音,播放声音,然后立即删除声音。这行不通;删除声音会导致声音停止播放。

10-04 19:03