使用AVAudioPlayer播放音频文件

来源:互联网 发布:illuststudio mac 编辑:程序博客网 时间:2024/05/17 09:38

 NSURL *audioPath=[[NSURLalloc]initFileURLWithPath:[[NSBundlemainBundle]pathForResource:@"myvoicename"ofType:@"mp3"]];

       audioPlayer=[[AVAudioPlayeralloc]initWithContentsOfURL:audioPatherror:&error];

        [audioPlayerplay];

0 0