AudioServicesPlaySystemSound ничего не делает, кроме AudioServicesPlayAlertSound заставляет iPhone вибрировать.AudioServicesPlaySystem Звуковая вибрация работает, но не звучит
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);