我目前正在尝试这段代码:
NSString *path = [[NSBundle mainBundle] pathForResource:@"dream" ofType:@"m4a"];
AVAudioPlayer* theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
theAudio.delegate = self;
[theAudio play];
但是,SDK 说 ViewController 没有实现 AVAudioPlayer Delegate。
关于如何使用 2.2 SDK 播放 WAV(或 M4a)的任何想法?