AudioServicesPlaySystemSound ничего не делает, но AudioServicesPlayAlertSound заставляет iPhone вибрировать.
AudioServicesCreateSystemSoundID возвращает успех. Я разрабатываю на iPhone3G под управлением iOS4.
Есть идеи?
Питер
=====
Вот как я создаю звук:
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);