V současné době jsem se snaží tento kód:
NSString *path = [[NSBundle mainBundle] pathForResource:@dream ofType:@m4a];
AVAudioPlayer* theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
theAudio.delegate = self;
[theAudio play];
Nicméně, SDK uvádí, že ViewController neimplementuje AVAudioPlayer delegáta.
Jakýkoli subjekt nějaké nápady na to, jak hrát WAV (nebo M4A) s použitím 2.2 SDK?













