我创建了新的应用。对于我的新应用程序,我想为我的音乐创建实时播放的音效。有人知道它需要什么框架吗?
答案 0 :(得分:0)
您应该使用AVFoundation框架。您可以像这样使用AVAudioPlayer类:
NSString * fPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"audiofile.mp3"];
NSURL * url = [NSURL fileURLWithPath:fPath];
AVAudioPlayer * audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url
error:nil];
audioPlayer.numberOfLoops = -1;
[audioPlayer play];