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

//    //播放远程地址
//    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];

你可能感兴趣的:(iOS_多媒体(2)音频播放AVPlayer)