音乐播放器

  • 1.搭建音乐播放器的界面
    • 对于这个音乐播放器我只实现了播放 暂停 下一曲 上一曲 停止 音量加减 和从歌曲列表中选歌并播放的功能 更多功能 欢迎大家参考我的代码 进行修改,代码中有些不妥地方,还望各位大神指出。
  • 整体界面搭建出来 是这个样子:


  • 这个是播放列表的样子 我把它做成半透明的样式;


  • 在搭建界面的时候 我们可以使用XIB来画 这样可以节约很多开发的时间 这个例子中 大多界面的地方我还是使用的纯代码实现 因为纯代码编写虽然有点耽误时间 但是将来进行版本控制的时候 非常方便.在使用XIB的时候 要注意的问题:
    • 当你画了一个控件 点击右上角的辅助编辑器 你可以使用按住Ctrl 加鼠标左键 拖到你的编辑器 然后为你的控件取名字. 当你想删除的时候 一定要点击storyBord 在你要删除的空间的上面 右键 然后点击叉叉 就可以删除与代码区的绑定 。如果要再次绑定只需要再次Ctrl加鼠标左键 拖过来.
      代码区:
      #import "ViewController.h"#import#define WIDTH self.view.bounds.size.width#define HEIGHT self.view.bounds.size.height@interface ViewController (){
      AVAudioPlayer *MyPlayer;//不能做成局部变量
      NSTimer *timer;
      NSMutableArray *songs;
      NSUInteger myindex;
      UIStepper *volumeStepper;
      int index1;
      UIView *view;
      UITableView *myTableView;
      NSMutableArray *dataArray;
      }
      @property (weak, nonatomic) IBOutlet UILabel *albumLabel;
      @property (weak, nonatomic) IBOutlet UILabel *artistLabel;
      @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
      @property (weak, nonatomic) IBOutlet UIImageView *coverImageView;
      @property (weak, nonatomic) IBOutlet UIProgressView *playProgressView;
      @end
      @implementation ViewController
      -(void)dealloc{
      if (timer) {
      [timer invalidate];
      timer = nil;
      }
      }
      - (void)viewDidLoad {
      [super viewDidLoad];
      myindex = 1;
      _playProgressView.progress = 0;
      songs = [NSMutableArray arrayWithObjects:@"月半小夜曲",@"后会无期",@"静静看着你",@"李白",@"喜欢你",@"Taylor Swift - Love Story (International Radio Mi", nil];
      _coverImageView.layer.cornerRadius = 100;
      _coverImageView.clipsToBounds = YES;
      NSString *filename = [[NSBundle mainBundle] pathForResource:@"李白" ofType:@"mp3"];
      //拿到mp3
      // NSString *filename = [[NSBundle mainBundle] pathForResource:@"后会无期" ofType:@"mp3"];
      NSURL *fileUrl = [NSURL fileURLWithPath:filename];
      //先拿到文件 才能拿到数据 才能刷新
      [self updateUI:fileUrl];
      MyPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];
      //设置支持后台播放后台播放
      //获得当前音频会话对象的单例
      AVAudioSession audioSession = [AVAudioSession sharedInstance];
      [audioSession setActive:YES error:nil];
      [audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];
      //打开项目 capabilities---> background modes--- > 打开audio and airplay 设置支持后台播放
      //打开项目 capabilities---> background modes---> 打开remote notifications 设置支持耳机
      [[UIApplication sharedApplication]beginReceivingRemoteControlEvents];
      //声道
      // player.pan = -1;
      //音乐大小 0~1 最大值可以修改 是一种软修改
      //MyPlayer.volume = 1;
      //文件播放速率 用于快进 快退
      //player.enableRate = YES;
      //player.rate = 4;
      //跳过20s再播放
      //MyPlayer.currentTime = 270;
      MyPlayer.delegate = self;
      //文件缓存
      //[MyPlayer prepareToPlay];
      //播放音乐
      // [MyPlayer play];
      // progressSlider = [[UISlider alloc]initWithFrame:CGRectMake(65, 440, 245, 15)];
      // [progressSlider addTarget:self action:@selector(progressValueChange) forControlEvents:UIControlEventValueChanged];
      // [self.view addSubview:progressSlider];
      timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(progressChange) userInfo:nil repeats:YES];
      timer.fireDate = [NSDate distantFuture];
      #if 0
      volumeStepper = [[UIStepper alloc]initWithFrame:CGRectMake(WIDTH/3+15, 4
      HEIGHT/7, 30, 20)];
      [volumeStepper addTarget:self action:@selector(volumeChange:) forControlEvents:UIControlEventValueChanged];
      volumeStepper.minimumValue = 0;
      volumeStepper.maximumValue = 3;
      volumeStepper.stepValue = 1;
      //设置控制器背景图片
      volumeStepper.tintColor = [UIColor lightGrayColor];
      [self.view addSubview:volumeStepper];
      #endif
      view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 300, 270)];
      view.center = CGPointMake(WIDTH/2, HEIGHT/3);
      view.hidden = YES;
      view.alpha = 0.6;
      [self.view addSubview:view];
      myTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, view.bounds.size.width, view.bounds.size.height) style:UITableViewStylePlain];
      [view addSubview:myTableView];
      myTableView.dataSource = self;
      myTableView.delegate = self;
      [self loadDataModel];
      }
      -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
      UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CELL"];
      if (!cell) {
      cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"CELL"];
      cell.backgroundColor = [UIColor colorWithRed:85.88 green:71.78 blue:60.74 alpha:0.6];
      }
      //cell.backgroundView = nil;
      cell.contentView.backgroundColor = [UIColor colorWithRed:85.88 green:71.78 blue:60.74 alpha:0.6];
      [myTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
      cell.opaque = NO;
      cell.textLabel.backgroundColor = [UIColor colorWithRed:85.88 green:71.78 blue:60.74 alpha:0.6];
      cell.textLabel.text = dataArray[indexPath.row];
      return cell;
      }
      -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
      return dataArray.count;
      }
      - (void)tableView:(UITableView *)tableView didSele ctRowAtIndexPath:(NSIndexPath *)indexPath{
      NSString *filename = [[NSBundle mainBundle] pathForResource:songs[indexPath.row] ofType:@"mp3"];
      NSURL *fileUrl = [NSURL fileURLWithPath:filename];
      [self updateUI:fileUrl];
      MyPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];
      MyPlayer.volume = 1;
      MyPlayer.delegate = self;
      [MyPlayer prepareToPlay];
      [MyPlayer play];
      view.hidden = YES;
      }
      -(void)loadDataModel{
      if (!dataArray) {
      dataArray = [NSMutableArray array];
      }
      dataArray = [NSMutableArray arrayWithObjects:@"月半小夜曲",@"后会无期",@"静静看着你",@"李白",@"喜欢你",@"Taylor Swift - Love Story (International Radio Mi", nil];
      }
      -(void)volumeChange:(UIStepper *)sender{
      MyPlayer.volume = sender.value;
      }
      //进度条改变的回调方法
      -(void)progressChange{
      _playProgressView.progress = MyPlayer.currentTime/MyPlayer.duration;
      [UIView animateWithDuration:8 animations:^{
      _coverImageView.transform = CGAffineTransformRotate(_coverImageView.transform, M_PI_4/5);
      }];
      }
      - (IBAction)volumeIncreaseButtonClicked:(UIButton *)sender {
      MyPlayer.volume += 1;
      if (MyPlayer.volume>4) {
      MyPlayer.volume = 4;
      }
      }
      - (IBAction)volumeDecreaseButtonClicked:(UIButton *)sender {
      MyPlayer.volume -= 1;
      if (MyPlayer.volume<0) {
      MyPlayer.volume = 0;
      }
      }
      //播放列表
      - (IBAction)MusicListButtonClicked:(UIButton *)sender {
      view.hidden = !view.hidden;
      }
      //播放结束
      -(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag{
      index1 = arc4random()%6;
      if (index1!=myindex) {
      myindex = index1;
      }
      NSString *filename = [[NSBundle mainBundle] pathForResource:songs[myindex] ofType:@"mp3"];
      NSURL *fileUrl = [NSURL fileURLWithPath:filename];
      [self updateUI:fileUrl];
      MyPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];
      MyPlayer.volume = 1;
      MyPlayer.delegate = self;
      [MyPlayer prepareToPlay];
      [MyPlayer play];
      }
      //刷新界面 拿到歌的信息 刷新界面
      -(void)updateUI:(NSURL *)fileUrl{
      //代表和文件相关的数据
      AVURLAsset *assset = [[AVURLAsset alloc]initWithURL:fileUrl options:nil];
      //[assset availableMetadataFormats];//元数据的格式
      NSArray *metaDataItems =[assset metadataForFormat:[[assset availableMetadataFormats] firstObject]];
      for (AVMetadataItem *item in metaDataItems) {
      if ([item.commonKey isEqualToString:@"artist"]) {
      _artistLabel.text = [item.value description];
      }
      else if ([item.commonKey isEqualToString:@"title"]){
      _titleLabel.text = [item.value description];
      }
      else if ([item.commonKey isEqualToString:@"albumName"]){
      _albumLabel.text = [item.value description];
      }
      else if ([item.commonKey isEqualToString:@"artwork"]){
      _coverImageView.image = [UIImage imageWithData:(id)item.value];
      }
      }
      }
      - (IBAction)buttonClicked:(UIButton *)sender {
      if(MyPlayer.isPlaying){
      timer.fireDate = [NSDate distantFuture];
      [MyPlayer pause];
      //[sender setTitle:@"播放" forState:UIControlStateNormal] ;
      }
      else {
      timer.fireDate = [NSDate distantPast];
      [MyPlayer play];
      //[sender setTitle:@"暂停" forState:UIControlStateNormal];
      }
      }
      - (IBAction)prevButtonClicked:(UIButton *)sender {
      timer.fireDate = [NSDate distantPast];
      myindex --;
      if (myindex==0) {
      myindex = 5;
      }
      NSString *filename = [[NSBundle mainBundle] pathForResource:songs[myindex] ofType:@"mp3"];
      NSURL *fileUrl = [NSURL fileURLWithPath:filename];
      [self updateUI:fileUrl];
      MyPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];
      MyPlayer.volume = 1;
      MyPlayer.delegate = self;
      [MyPlayer prepareToPlay];
      [MyPlayer play];
      }
      - (IBAction)nextButtonClicked:(UIButton *)sender {
      timer.fireDate = [NSDate distantPast];
      myindex++;
      if (myindex>5) {
      myindex = 0;
      }
      NSString *filename = [[NSBundle mainBundle] pathForResource:songs[myindex] ofType:@"mp3"];
      NSURL *fileUrl = [NSURL fileURLWithPath:filename];
      [self updateUI:fileUrl];
      MyPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];
      MyPlayer.volume = 1;
      MyPlayer.delegate = self;
      [MyPlayer prepareToPlay];
      [MyPlayer play];
      }
      - (IBAction)stopButtonClicked:(UIButton *)sender {
      timer.fireDate = [NSDate distantFuture];
      [MyPlayer stop];
      MyPlayer.currentTime = 0;
      _playProgressView.progress = 0;
      }
      @end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容