1
我創建了新的應用程序。對於我的新應用程序,我想爲我的音樂實時播放音效。有人知道什麼框架需要它嗎?什麼框架需要在iOS中創建實時音效
我創建了新的應用程序。對於我的新應用程序,我想爲我的音樂實時播放音效。有人知道什麼框架需要它嗎?什麼框架需要在iOS中創建實時音效
您應該使用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];