您的位置:首页 > 移动开发 > IOS开发

iOS_多媒体(2)音频播放AVPlayer

2013-11-22 21:10 579 查看
//    //播放远程地址
//    NSString *path=@"http://sc.111ttt.com/up/mp3/136928/122EE9E93EE1D35DECA6B83934B65BA3.mp3";
//    NSURL *url=[NSURL URLWithString:path];
//
//   AVPlayer  *avPlay1=[[AVPlayer alloc]initWithURL:url];
//    [avPlay1 play];
//播放本地
NSString *filePath=[[NSBundle mainBundle]pathForResource:@"感谢" ofType:@"MP3"];
NSURL *url=[NSURL fileURLWithPath:filePath];
avPlay=[[AVPlayer alloc]initWithURL:url];
[avPlay play];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: