音乐播放器

//
// ViewController.m
// 音乐播放器
//
// Created by 郭宝 on 16/8/20.
// Copyright © 2016年 郭宝. All rights reserved.
//

import "ViewController.h"

#import <AVFoundation/AVFoundation.h>

// 用到的协议方法
@interface ViewController ()

<AVAudioPlayerDelegate,UITableViewDelegate,UITableViewDataSource>

// 播放器

@property (nonatomic, strong) AVAudioPlayer *player;

// 表示进度的slider

@property (weak, nonatomic) IBOutlet UISlider *progressSlider;

// 计时器

@property (nonatomic, strong) NSTimer *timer;

// 显示时间进度的label

@property (weak, nonatomic) IBOutlet UILabel *progressLabel;

// 音乐名称

@property (weak, nonatomic) IBOutlet UILabel *musicNameLabel;

// 存储音乐url的数组

@property (nonatomic, strong) NSArray *musicArray;

// 音乐的下标

@property (nonatomic, assign) NSInteger index;

// 音乐列表的tableView

@property (nonatomic, strong) UITableView *tableView;

// 开始按钮

@property (weak, nonatomic) IBOutlet UIButton *startButton;

// 循环模式的segControl

@property (weak, nonatomic) IBOutlet UISegmentedControl *repeatModelSegControl;

@end

@implementation ViewController
// 懒加载音乐url数组

  • (NSArray *)musicArray {
        _musicArray = [NSArray array];
        NSURL *url0 = [[NSBundle mainBundle] URLForResource:@"演员.mp3" withExtension:nil];
        NSURL *url1 = [[NSBundle mainBundle] URLForResource:@"牵线木偶.mp3" withExtension:nil];
        NSURL *url2 = [[NSBundle mainBundle] URLForResource:@"演员.mp3" withExtension:nil];
        NSURL *url3 = [[NSBundle mainBundle] URLForResource:@"牵线木偶.mp3" withExtension:nil];
        NSURL *url4 = [[NSBundle mainBundle] URLForResource:@"演员.mp3" withExtension:nil];
        NSURL *url5 = [[NSBundle mainBundle] URLForResource:@"牵线木偶.mp3" withExtension:nil];
        _musicArray = @[url0,url1,url2,url3,url4,url5];
    return _musicArray;

}

  • (void)viewDidLoad {
    [super viewDidLoad];
    self.index = 0;
    
    // 创建音乐列表的tableView
    UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(20, 350, 340, 250) style:UITableViewStylePlain];   
   self.tableView = tableView;
// 设置代理和数据源
   self.tableView.delegate = self;
    self.tableView.dataSource = self;
// 添加
    [self.view addSubview:tableView];
    [self loadMusic];
// 设置子控件们的tintColor
    NSArray *array = [self.view subviews];
    [array enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        [obj setTintColor:[UIColor grayColor]];
    }];

}

  • (void)loadMusic {
    // 创建一个错误对象,用来接收错误信息
    NSError *error;
// 创建播放器对象 传入本地url
    self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:self.musicArray[self.index] error:&error];
// 设置代理
    self.player.delegate = self;
// 打印错误信息
    if (error) {
        NSLog(@"%@",error);
    }
// 创建一个计时器,用于记录播放进度--在计时器方法里把currentTime赋值给slider的value
    self.timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(sliderDisplay) userInfo:nil repeats:YES];
// 设置slider的最大值
    self.progressSlider.maximumValue = self.player.duration;
// 音乐名称
    NSURL *url = self.self.musicArray[self.index];
    self.musicNameLabel.text = url.lastPathComponent;

}

// 控制音量的slider

  • (IBAction)volumeSlider:(UISlider *)sender {
    self.player.volume = sender.value;

}
// 开始播放按钮

  • (IBAction)startClick:(UIButton *)sender {
    if (!sender.selected) {
        // 如果player是空的 就读取音乐 否则就是已经在播放 再次点击的时候不能重新读取音乐
        if (self.player == nil) {
            [self loadMusic];
        }
        // 准备播放, 可不写 为了规范要写.
        [self.player prepareToPlay];
        // 播放
        [self.player play];
        sender.selected = YES;
    } else {
        [self.player pause];
        sender.selected = NO;
    }

}

// 停止

  • (IBAction)stopClick:(id)sender {
    [self.player pause];
    self.player.currentTime = 0;
    self.startButton.selected = NO;

}
/** 计时器调用的显示slider的方法 */

  • (void)sliderDisplay {
    // 赋值
    self.progressSlider.value = self.player.currentTime;
    // 转换时间格式
    NSString *curren = [self timeFormatted:self.player.currentTime];
    NSString *all = [self timeFormatted:self.player.duration];
    // 把时间拼接赋值给显示时间的label
    self.progressLabel.text = [NSString stringWithFormat:@"%@/%@",curren,all];

}
/** 拖动进度条 */

  • (IBAction)slideProgress:(UISlider *)sender {
    //将当前的播放时间设置为slider的value
    self.player.currentTime = sender.value;

}
/** 将秒数转换为分秒格式的时间字符串 */

  • (NSString *)timeFormatted:(int)totalSeconds
    {
    // 将秒数转换为时间
    NSDate  *date = [NSDate dateWithTimeIntervalSince1970:totalSeconds];
    NSTimeZone *zone = [NSTimeZone systemTimeZone];
    NSInteger interval = [zone secondsFromGMTForDate: date];
    NSDate *localeDate = [date  dateByAddingTimeInterval: interval];
// 设置时间格式
    NSDateFormatter *dateformmatter = [[NSDateFormatter alloc] init];
    dateformmatter.dateFormat = @"mm:ss";
    NSString *time = [dateformmatter stringFromDate:localeDate];
    return time;

}
// 上一曲

  • (IBAction)lastMusicClick:(id)sender {
    self.startButton.selected = YES;
    if (self.repeatModelSegControl.selectedSegmentIndex == 0) { 
    

//顺序播放
if (self.index <= 0) {
self.index = self.musicArray.count - 1;
} else {
self.index--;
}
} else {
//随机播放
NSInteger index = arc4random() % self.musicArray.count;
self.index = index;
}
[self loadMusic];
[self.player play];

}
// 下一曲
- (IBAction)nextMusicClick:(id)sender {
    ```
    self.startButton.selected = YES;
    if (self.repeatModelSegControl.selectedSegmentIndex == 0) { 
// 顺序播放
        if (self.index >= self.musicArray.count - 1) {
            self.index = 0;
        } else {
            self.index++;
        }
    } else { 
// 随机播放
        NSInteger index = arc4random() % self.musicArray.count;
        self.index = index;
    }
    [self loadMusic];
    [self.player play];

}

pragma mark - 播放结束调用的方法

  • (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag {
    if (self.repeatModelSegControl.selectedSegmentIndex == 0) {
    

// 顺序播放
[self nextMusicClick:nil];
} else {
// 随机播放
NSInteger index = arc4random() % self.musicArray.count;
self.index = index;
[self loadMusic];
[self.player play];
}

}
// 数据源
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.musicArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:@"reuse"];
cell.textLabel.text = url.lastPathComponent;
cell.textColor = [UIColor grayColor];
return cell;
}
// 选中cell, tableView点击方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
self.startButton.selected = YES;
self.index = indexPath.row;
    // 读取音乐 播放音乐
[self loadMusic];
[self.player play];
}
// 用到的音乐文件自行下载, stroyboard自行拖拽.
![000000.png](http://upload-images.jianshu.io/upload_images/2435291-f225e7c1c52f3580.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,230评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,261评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,089评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,542评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,542评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,544评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,922评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,578评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,816评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,576评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,658评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,359评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,920评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,859评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,381评论 2 342

推荐阅读更多精彩内容