无标题文章

//1.导包

import

import

//2.
//播放项目路
NSString *urlStr=[[NSBundle mainBundle] pathForResource:@"10736444" ofType:@"mp3"];
//播放本地资源
NSURL * url = [NSURL fileURLWithPath:urlStr];
//网络地址
// NSURL * url = [NSURL URLWithString:@"http://yinyueshiting.baidu.com/data2/music/62dc0794ca86b6515a74fec68a5f2e9f/540999926/266322598252000128.mp3?xcode=7cc44437af578b7cc6826868de970894"];

//创建要播放的资源项目
AVPlayerItem * item =[[AVPlayerItem alloc]initWithURL:url];
//初始化控件
self.player=[[AVPlayer alloc]initWithPlayerItem:item];
[self.player play];

你可能感兴趣的:(无标题文章)