国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

運(yùn)用iOS教你輕松制作音樂播放器

2019-10-21 18:47:27
字體:
供稿:網(wǎng)友

本文實(shí)例為大家分享了iOS音樂播放器制作的具體代碼,供大家參考,具體內(nèi)容如下

效果圖

iOS,音樂播放器

目錄結(jié)構(gòu)

iOS,音樂播放器

代碼

//// ViewController.m// 播放音樂//// Created by xubh on 2017/3/24.// Copyright © 2017年 xubh. All rights reserved.//#import "ViewController.h"#import <AVFoundation/AVFoundation.h>@interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *bgImageview;@property (strong,nonatomic) AVPlayer *player;@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad];// 背景圖片和設(shè)備屏幕一樣大 CGRect r = [ UIScreen mainScreen ].applicationFrame; self.bgImageview.frame = r; // Do any additional setup after loading the view, typically from a nib.// 毛玻璃效果 UIToolbar *toolbar = [[UIToolbar alloc]init]; toolbar.frame = self.bgImageview.bounds; toolbar.barStyle = UIBarStyleBlack; toolbar.alpha = 0.9; [self.bgImageview addSubview:toolbar];// 創(chuàng)建播放器// NSString *path =[[NSBundle mainBundle]pathForResource:@"mysong1.mp3" ofType:nil ];// NSURL *url =[NSURL fileURLWithPath:path]; NSURL *url = [[NSBundle mainBundle] URLForResource:@"夜的樂章.mp3" withExtension:nil]; AVPlayerItem *playerItem = [[AVPlayerItem alloc]initWithURL:url]; self.player = [[AVPlayer alloc] initWithPlayerItem:playerItem];}//開始播放和暫停播放- (IBAction)startOrPauseMusic:(UIButton *)sender { switch (sender.tag) { case 3:  [self.player play];  break; case 4:  [self.player pause];  break; default:  break; }}//切換歌曲- (IBAction)changeMusic:(UIButton *)sender { NSString *musicName =nil; switch (sender.tag) { case 1:  musicName = @"告白氣球.mp3";  break; case 2:  musicName = @"周杰倫串燒.mp3";  break; default:  break; } NSURL *url = [[NSBundle mainBundle] URLForResource:musicName      withExtension:nil]; AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithURL:url]; [self.player replaceCurrentItemWithPlayerItem:playerItem];// 播放音樂 [self.player play];}- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}@end

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到IOS開發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 卓资县| 资源县| 永定县| 奎屯市| 靖宇县| 巴里| 望江县| 花莲县| 乌兰浩特市| 登封市| 浏阳市| 如东县| 武邑县| 兴义市| 扎鲁特旗| 靖远县| 泰来县| 万州区| 望谟县| 特克斯县| 东方市| 清水县| 神农架林区| 锡林浩特市| 英山县| 大英县| 余江县| 西乌珠穆沁旗| 阜新市| 阿拉善左旗| 琼结县| 郯城县| 和田县| 荣成市| 始兴县| 定安县| 泽州县| 新野县| 白城市| 措勤县| 明溪县|