iOS开发-音乐播放器(简单版)

今天给同学们带来音频,音乐,和视频播放相关的案例那么废话不多说直接上代码!先看演示示例:

iOS开发-音乐播放器(简单版).gif
//

//  ZZMusic.h

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#warning - 对模型的处理借助MJExtension

#import <Foundation/Foundation.h>

@interface ZZMusic : NSObject

@property (copy, nonatomic) NSString *name;

@property (copy, nonatomic) NSString *filename;

@property (copy, nonatomic) NSString *singer;

@property (copy, nonatomic) NSString *singerIcon;

@property (copy, nonatomic) NSString *icon;

@property (nonatomic, assign, getter = isPlaying) BOOL playing;

@end

//

//  ZZMusic.m

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import "ZZMusic.h"

@implementation ZZMusic

@end

//

//  ZZMusicCell.h

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import <UIKit/UIKit.h>

@class  ZZMusic;

@interface ZZMusicCell : UITableViewCell

+ (instancetype)cellWithTableView:(UITableView *)tableView;

@property (nonatomic, strong) ZZMusic *music;

@end

//

//  ZZMusicCell.m

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import "ZZMusicCell.h"

#import "ZZMusic.h"

#import "Colours.h"

#import "UIImage+ZZ.h"

@interface  ZZMusicCell()

/**

 *  定时器

 */

@property (nonatomic, strong) CADisplayLink *link;

@end

@implementation ZZMusicCell

- (CADisplayLink *)link

{

    if (!_link) {

 self.link = [CADisplayLink  displayLinkWithTarget:self  selector:@selector(update)];

    }

    return _link;

}

+ (instancetype)cellWithTableView:(UITableView *)tableView

{

    static NSString *ID = @"music";

    ZZMusicCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    if (cell == nil) {

        cell = [[ZZMusicCell  alloc] initWithStyle:UITableViewCellStyleSubtitle  reuseIdentifier:ID];

    }

    return cell;

}

- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier

{

    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {

        self.backgroundColor = [UIColor  clearColor];

        self.selectedBackgroundView = [[UIImageView  alloc] initWithImage:[UIImage  imageNamed:@"backgroundImage"]];

    }

 return  self;

}

- (void)setMusic:(ZZMusic *)music

{
    _music = music;

    self.textLabel.text = music.name;

    self.detailTextLabel.text = music.singer;

    self.imageView.image = [UIImage  circleImageWithName:music.singerIcon  borderWidth:2  borderColor:[UIColor  skyBlueColor]];

    if (music.isPlaying) {

        [self.link  addToRunLoop:[NSRunLoop  mainRunLoop] forMode:NSDefaultRunLoopMode];

    } else { // 停止动画

        [self.link invalidate];

        self.link = nil;

     self.imageView.transform = CGAffineTransformIdentity;

    }

}

/**

 *  8秒转一圈, 45°/s

 */

- (void)update

{

 // 1/60秒 * 45

 // 规定时间内转动的角度 == 时间 * 速度

    CGFloat angle = self.link.duration * M_PI_4;

    self.imageView.transform = CGAffineTransformRotate(self.imageView.transform, angle);

}

- (void)dealloc

{

 // 移除定时器

    [self.link  removeFromRunLoop:[NSRunLoop  mainRunLoop] forMode:NSDefaultRunLoopMode];

}

@end

//

//  UIImage+ZZ.h

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import <UIKit/UIKit.h>

@interface UIImage (ZZ)

+ (instancetype)circleImageWithName:(NSString *)name borderWidth:(CGFloat)borderWidth borderColor:(UIColor *)borderColor;

@end

//

//  UIImage+ZZ.m

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import "UIImage+ZZ.h"

@implementation UIImage (ZZ)

+ (instancetype)circleImageWithName:(NSString *)name borderWidth:(CGFloat)borderWidth borderColor:(UIColor *)borderColor

{

    // 1.加载原图

    UIImage *oldImage = [UIImage imageNamed:name];

    // 2.开启上下文

    CGFloat imageW = oldImage.size.width + 2 * borderWidth;

    CGFloat imageH = oldImage.size.height + 2 * borderWidth;

    CGSize imageSize = CGSizeMake(imageW, imageH);

    UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0.0);

    // 3.取得当前的上下文

    CGContextRef ctx = UIGraphicsGetCurrentContext();

    // 4.画边框(大圆)

    [borderColor set];

    CGFloat bigRadius = imageW * 0.5; // 大圆半径

    CGFloat centerX = bigRadius; // 圆心

    CGFloat centerY = bigRadius;

    CGContextAddArc(ctx, centerX, centerY, bigRadius, 0, M_PI * 2, 0);

    CGContextFillPath(ctx); // 画圆

    // 5.小圆

    CGFloat smallRadius = bigRadius - borderWidth;

    CGContextAddArc(ctx, centerX, centerY, smallRadius, 0, M_PI * 2, 0);

    // 裁剪(后面画的东西才会受裁剪的影响)

    CGContextClip(ctx);

    // 6.画图

    [oldImage drawInRect:CGRectMake(borderWidth, borderWidth, oldImage.size.width, oldImage.size.height)];

    // 7.取图

   UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

    // 8.结束上下文

    UIGraphicsEndImageContext();

    return newImage;

}

@end

//

//  ZZAudioTool.h

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import <Foundation/Foundation.h>

#import <AVFoundation/AVFoundation.h>

@interface ZZAudioTool : NSObject

/**

 *  播放器

 */

@property(nonatomic, strong) AVAudioPlayer *player;

/**

 *  创建单例

 */

+ (instancetype)shareInstance;

/**

 *  播放音效

 *

 *  @param filename 音效文件名

 */

+ (void)playSound:(NSString *)filename;

/**

 *  销毁音效

 *

 *  @param filename 音效文件名

 */

+ (void)disposeSound:(NSString *)filename;

/**

 *  播放音乐

 *

 *  @param filename 音乐文件名

 */

+ (AVAudioPlayer *)playMusic:(NSString *)filename;

/**

 *  暂停音乐

 *

 *  @param filename 音乐文件名

 */

+ (void)pauseMusic:(NSString *)filename;

/**

 *  停止音乐

 *

 *  @param filename 音乐文件名

 */

+ (void)stopMusic:(NSString *)filename;

/**

 *  返回当前正在播放的音乐播放器

 */

+ (AVAudioPlayer *)currentPlayingAudioPlayer;

@end

//

//  ZZAudioTool.m

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import "ZZAudioTool.h"

@implementation ZZAudioTool

/**

 *  存放所有的音频ID

 *  字典: filename作为key, soundID作为value

 */

static  NSMutableDictionary *_soundIDDict;

/**

 *  存放所有的音乐播放器

 *  字典: filename作为key, audioPlayer作为value

 */

static NSMutableDictionary *_audioPlayerDict;

/**

 *  返回请求单例对象

 */

+ (instancetype)shareInstance

{
    static ZZAudioTool *audioTool;

    static dispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{

        if (audioTool == nil) {
            audioTool = [[ZZAudioTool alloc] init];
        }
    });
    return audioTool;
}

/**

 *  初始化

 */

+ (void)initialize

{

    _soundIDDict = [NSMutableDictionary  dictionary];
  
    _audioPlayerDict = [NSMutableDictionary  dictionary];

    // 设置音频会话类型

   AVAudioSession *session = [AVAudioSession  sharedInstance];

   [session setCategory:AVAudioSessionCategorySoloAmbient  error:nil];

   [session setActive:YES error:nil];

}

/**

 *  播放音效

 *

 *  @param filename 音效文件名

 */

+ (void)playSound:(NSString *)filename

{

    if (!filename) return;

     // 1.从字典中取出soundID

    SystemSoundID soundID = [_soundIDDict[filename] unsignedLongValue];

    if (!soundID) { // 创建

    // 加载音效文件

    NSURL *url = [[NSBundle  mainBundle] URLForResource:filename withExtension:nil];

    if (!url) return;

    // 创建音效ID

    AudioServicesCreateSystemSoundID((__bridge  CFURLRef)url, &soundID);

    // 放入字典

    _soundIDDict[filename] = @(soundID);

   }

 // 2.播放

 AudioServicesPlaySystemSound(soundID);

}

/**

 *  销毁音效

 *

 *  @param filename 音效文件名

 */

+ (void)disposeSound:(NSString *)filename

{

    if (!filename) return;

    SystemSoundID soundID = [_soundIDDict[filename] unsignedLongValue];

    if (soundID) {

       // 销毁音效ID

       AudioServicesDisposeSystemSoundID(soundID);

       // 从字典中移除

       [_soundIDDict removeObjectForKey:filename];

    }

}

/**

 *  播放音乐

 *

 *  @param filename 音乐文件名

 */

+ (AVAudioPlayer *)playMusic:(NSString *)filename

{

    if (!filename) return nil;

 // 1.从字典中取出audioPlayer

    AVAudioPlayer *audioPlayer = _audioPlayerDict[filename];

    if (!audioPlayer) { // 创建

 // 加载音乐文件

 NSURL *url = [[NSBundle  mainBundle] URLForResource:filename withExtension:nil];

        if (!url) return nil;

 // 创建audioPlayer

        audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];

        // 缓冲

        [audioPlayer prepareToPlay];

 //        audioPlayer.enableRate = YES;

 //        audioPlayer.rate = 10.0;

        // 放入字典

        _audioPlayerDict[filename] = audioPlayer;

    }

 // 2.播放

    if (!audioPlayer.isPlaying) {

        [audioPlayer play];

    }

    return audioPlayer;

}

/**

 *  暂停音乐

 *

 *  @param filename 音乐文件名

 */

+ (void)pauseMusic:(NSString *)filename

{

    if (!filename) return;

 // 1.从字典中取出audioPlayer

    AVAudioPlayer *audioPlayer = _audioPlayerDict[filename];

 // 2.暂停

    if (audioPlayer.isPlaying) {

        [audioPlayer pause];

    }

}

/**

 *  停止音乐

 *

 *  @param filename 音乐文件名

 */

+ (void)stopMusic:(NSString *)filename

{

    if (!filename) return;

 // 1.从字典中取出audioPlayer

    AVAudioPlayer *audioPlayer = _audioPlayerDict[filename];

 // 2.暂停

    if (audioPlayer.isPlaying) {

        [audioPlayer stop];

        // 直接销毁

        [_audioPlayerDict removeObjectForKey:filename];

    }

}

/**

 *  返回当前正在播放的音乐播放器

 */

+ (AVAudioPlayer *)currentPlayingAudioPlayer

{

    for (NSString *filename in _audioPlayerDict) {

        AVAudioPlayer *audioPlayer = _audioPlayerDict[filename];

        if (audioPlayer.isPlaying) {

            return audioPlayer;

        }

    }

 return  nil;

}

@end

//

//  ZZMusicsController.h

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import <UIKit/UIKit.h>

@interface ZZMusicsController : UIViewController

@end

//

//  ZZMusicsController.m

//  05-音乐播放器

//

//  Created by 周昭 on 2017/3/20.

//  Copyright © 2017年 ZZ. All rights reserved.

//

#import "ZZMusicsController.h"

#import "ZZMusic.h"

#import "ZZMusicCell.h"

#import "ZZAudioTool.h"

#import "MJExtension.h"

#import "NSString+ZZ.h"

#import <AVFoundation/AVFoundation.h>

#import <MediaPlayer/MediaPlayer.h>

@interface  ZZMusicsController ()<UITableViewDelegate,UITableViewDataSource,AVAudioPlayerDelegate>

@property (nonatomic, strong) NSArray *musics;

@property (nonatomic, strong) AVAudioPlayer *currentPlayingAudioPlayer;

@property (nonatomic, weak) UITableView *tableView;

@property (nonatomic, weak) UIImageView *imgView;

@end

@implementation ZZMusicsController

#pragma mark - 懒加载

- (NSArray *)musics

{

    if (!_musics) {

 self.musics = [ZZMusic  objectArrayWithFilename:@"Musics.plist"];

    }

 return  _musics;

}

- (void)viewDidLoad {

    [super  viewDidLoad];

 // 0.设置标题&背景

    [self  setUpTitle];

 // 1.初始化tableView

    [self  setUpTableView];

}

#pragma mark - setUp 初始化

- (void)setUpTableView

{

 // 0.创建tableView

    UITableView *tableView = [[UITableView alloc] init];

    tableView.delegate = self;

    tableView.dataSource = self;

    tableView.tableFooterView = [[UIView alloc] init];

 // 1.设置背景

    UIImageView *imgView = [[UIImageView alloc] init];

    imgView.frame = self.view.frame;

    imgView.image = [UIImage imageNamed:@"backgroundImage"];

    tableView.backgroundView = imgView;

    tableView.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);

    [self.view addSubview:tableView];

    self.tableView = tableView;

}

- (void)setUpTitle

{

 // 0.设置标题

 self.title = NSLocalizedString(@"音乐播放器", nil);

}

#pragma mark - Table view data source

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

 return  self.musics.count;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

 // 1.创建cell

    ZZMusicCell *cell = [ZZMusicCell cellWithTableView:tableView];

 // 2.设置cell的数据

    cell.music = self.musics[indexPath.row];

    return cell;

}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

{

    return 70;

}

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath

{

 // 停止音乐

    ZZMusic *music = self.musics[indexPath.row];

    [ZZAudioTool  stopMusic:music.filename];

 // 再次传递模型

    ZZMusicCell *cell = (ZZMusicCell *)[tableView cellForRowAtIndexPath:indexPath];

    music.playing = NO;

    cell.music = music;

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

 // 取出当前点击的cell

    ZZMusicCell *cell = (ZZMusicCell *)[tableView cellForRowAtIndexPath:indexPath];

 // 取出要播放的音乐

    ZZMusic *music = self.musics[indexPath.row];

    if (music.playing) {

        [ZZAudioTool pauseMusic:music.filename];

        music.playing = NO;

        cell.music = music;

    } else {

        AVAudioPlayer *audioPlayer = [ZZAudioTool playMusic:music.filename];

        audioPlayer.delegate = self;

 self.currentPlayingAudioPlayer = audioPlayer;

 // 在锁屏界面显示歌曲信息

        [self  showInfoInLockedScreen:music];

 // 再次传递模型

        music.playing = YES;

        cell.music = music;

    }

}

/**

 *  在锁屏界面显示歌曲信息

 */

- (void)showInfoInLockedScreen:(ZZMusic *)music

{

 NSMutableDictionary *info = [NSMutableDictionary  dictionary];

 // 标题(音乐名称)

    info[MPMediaItemPropertyTitle] = music.name;

 // 作者

    info[MPMediaItemPropertyArtist] = music.singer;

 // 专辑

    info[MPMediaItemPropertyAlbumTitle] = music.singer;

 // 图片

    info[MPMediaItemPropertyArtwork] = [[MPMediaItemArtwork  alloc] initWithImage:[UIImage  imageNamed:music.icon]];

    [MPNowPlayingInfoCenter  defaultCenter].nowPlayingInfo = info;

}

#pragma mark - AVAudioPlayerDelegate

- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag

{

 // 计算下一行

    NSIndexPath *selectedPath = [self.tableView indexPathForSelectedRow];

    NSInteger nextRow = selectedPath.row + 1;

    if (nextRow == self.musics.count) {

        nextRow = 0;

    }

#warning 停止上一首歌的转圈

 // 再次传递模型

    ZZMusicCell *cell = (ZZMusicCell *)[self.tableView cellForRowAtIndexPath:selectedPath];

    ZZMusic *music = self.musics[selectedPath.row];

    music.playing = NO;

    cell.music = music;

 // 播放下一首歌

    NSIndexPath *currentPath = [NSIndexPath indexPathForRow:nextRow inSection:selectedPath.section];

    [self.tableView  selectRowAtIndexPath:currentPath animated:YES  scrollPosition:UITableViewScrollPositionTop];

    [self  tableView:self.tableView  didSelectRowAtIndexPath:currentPath];

}

/**

 *  音乐播放器被打断(打\接电话)

 */

- (void)audioPlayerBeginInterruption:(AVAudioPlayer *)player

{

 NSLog(@"audioPlayerBeginInterruption---被打断");

}

/**

 *  音乐播放器停止打断(打\接电话)

 */

- (void)audioPlayerEndInterruption:(AVAudioPlayer *)player withOptions:(NSUInteger)flags

{

 NSLog(@"audioPlayerEndInterruption---停止打断");

    [player play];

}
@end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容