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);