【代碼筆記】仿QQ空間,歌曲播放

来源:http://www.cnblogs.com/yang-guang-girl/archive/2016/03/01/5229830.html
-Advertisement-
Play Games

一,效果圖。 二,工程圖。 三,代碼。 RootViewController.h #import <UIKit/UIKit.h> #import <AVFoundation/AVFoundation.h> @interface RootViewController : UIViewControlle


一,效果圖。

二,工程圖。

三,代碼。

RootViewController.h

複製代碼
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@interface RootViewController : UIViewController
<AVAudioPlayerDelegate>
{
    //存放歌曲數組
    NSMutableArray *musicArray;
    //名字所在的label
    UILabel * musicNameLabel;
    //播放器
    AVAudioPlayer * _player;
    //進度後的背景色
    UIView * overLayView;
    //聲音控制
    UISlider * volumeSlider;
    //歌曲進度
    UISlider * progressSlider;
    //語音所在的灰色背景
    UIView * functionView;
    //前一首按鈕
    UIButton * prevButton;
    //播放按鈕
    UIButton * playButton;
    //下一首按鈕
    UIButton * nextButton;
    //重播按鈕
    UIButton * repeatButton;
    //歌曲播放的時間
    UILabel *startTime;
    //歌曲剩下的時間
    UILabel * currentTime;
    
    //存放歌曲在數組中的當前位置
    NSInteger currentIndex;
    NSTimer *timer;
    
    //圖片框以及裡面的圖片
    UIView *transitionView;
    //灰色的圖
    UIImageView * borderView;
    //中間的空間圖片
    UIView * middleView;
    
}
@end
複製代碼

 

RootViewController.m

複製代碼
#import "RootViewController.h"

@interface RootViewController ()

@end

@implementation RootViewController


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.navigationController.navigationBarHidden=YES;
    
    //歌曲所在的數組
    musicArray=[[NSMutableArray alloc] initWithObjects:@"一眼萬年",@"中國話", @"夜曲",@"三寸天堂",nil];
    
    //設置背景色
    UIImage *image=[UIImage imageNamed:@"audio_bg.png"];
    self.view.backgroundColor =[UIColor colorWithPatternImage:image];
    
    
    //顯示歌曲的名字
    UIView *navView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    navView.backgroundColor=[UIColor clearColor];
    navView.alpha=0.9;
    [self.view  addSubview:navView];
   
    //歌曲的名字所在的label
    musicNameLabel=[[UILabel alloc] initWithFrame:CGRectMake(80, 0, 160, 44)];
    musicNameLabel.backgroundColor=[UIColor clearColor];
    musicNameLabel.textColor=[UIColor blackColor];
    musicNameLabel.text = [musicArray objectAtIndex:0];
    musicNameLabel.font=[UIFont boldSystemFontOfSize:12];
    musicNameLabel.textAlignment=NSTextAlignmentCenter;

    [navView addSubview:musicNameLabel];
    
    //歌曲的地址
    NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:[musicArray objectAtIndex:0] ofType:@"mp3"]];
    
    _player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
    //準備播放,先提前把緩存準備好.
    [_player prepareToPlay];
    //開啟變速功能
    _player.enableRate = YES;
    _player.delegate = self;
    [self playerViewInit];
    
}
#pragma -mark -functions
//設置播放器的畫面的排版
-(void)playerViewInit{
    //進度後的背景色
    overLayView=[[UIView alloc] initWithFrame:CGRectMake(0.0f, 44.0f, 320.0f, 80.0f)];
    overLayView.backgroundColor=[UIColor colorWithWhite:0.1f alpha:0.2f];
    overLayView.hidden=NO;
    [self.view addSubview:overLayView];
    
    //聲音調節
    volumeSlider=[[UISlider alloc]initWithFrame:CGRectMake(20.0f, 20.0f, 250.0f, 30.0f)];
    volumeSlider.backgroundColor=[UIColor clearColor];
    [volumeSlider setThumbImage:[UIImage imageNamed:@"com_thumb_max_h.png"] forState:UIControlStateNormal];
    [volumeSlider setMinimumTrackImage:[[UIImage imageNamed:@"com_slider_min_l.png"]stretchableImageWithLeftCapWidth:10 topCapHeight:0] forState:UIControlStateNormal];
    volumeSlider.alpha=0.6f;
    volumeSlider.minimumValue=0.0f;
    volumeSlider.maximumValue=1.0f;
    volumeSlider.value=0.2f;
    [volumeSlider addTarget:self action:@selector(doClickChangeVolume) forControlEvents:UIControlEventValueChanged];
    volumeSlider.minimumValueImage=[UIImage imageNamed:@"cell_radio_speaker.png"];
    
    [overLayView addSubview:volumeSlider];
    _player.volume = volumeSlider.value;
    
    
    
    //語音後的黑色按鈕
    functionView=[[UIView alloc]initWithFrame:CGRectMake(0, 460-90, 320, 90)] ;
    functionView.backgroundColor=[UIColor colorWithWhite:0.1f alpha:0.2f];
    [self.view addSubview:functionView];
    
    //前一首按鈕
    prevButton=[UIButton buttonWithType:UIButtonTypeCustom];
    prevButton.frame=CGRectMake(50, 10.0f, 40.0f, 40.0f);
    [prevButton setImage:[UIImage imageNamed:@"audio_btn_pre_h.png"] forState:UIControlStateNormal];
    [prevButton setImage:[UIImage imageNamed:@"audio_btn_pre_n.png"] forState:UIControlStateHighlighted];
    [prevButton addTarget:self action:@selector(doClickPrevButton:) forControlEvents:UIControlEventTouchUpInside];
    [functionView addSubview:prevButton];
    
    //播放按鈕
    playButton=[UIButton buttonWithType:UIButtonTypeCustom];
    playButton.frame=CGRectMake(140, 10.0f, 40.0f, 40.0f);
    playButton.tag = 10;
    [playButton setImage:[UIImage imageNamed:@"audio_btn_play_h.png"] forState:UIControlStateNormal];
    [playButton addTarget:self action:@selector(doClickPlayButton:) forControlEvents:UIControlEventTouchUpInside];
    [functionView addSubview:playButton];
  
    //後一首按鈕
    nextButton=[UIButton buttonWithType:UIButtonTypeCustom];
    nextButton.frame=CGRectMake(230.0f, 10.0f, 40.0f, 40.0f);
    [nextButton setImage:[UIImage imageNamed:@"audio_btn_next_h.png"] forState:UIControlStateNormal];
    [nextButton setImage:[UIImage imageNamed:@"audio_btn_next_n.png"] forState:UIControlStateHighlighted];
    [nextButton addTarget:self action:@selector(doClickNextButton:) forControlEvents:UIControlEventTouchUpInside];
    [functionView addSubview:nextButton];
    
    //音量控制條
    progressSlider =[[UISlider alloc]initWithFrame:CGRectMake(50.0f, 55.0f, 230.0f, 20.0f)];
    progressSlider.minimumValue=0.0f;
    progressSlider.maximumValue=1.0f;
    progressSlider.backgroundColor=[UIColor clearColor];
    [progressSlider setThumbImage:[UIImage imageNamed:@"com_thumb_max_h.png"] forState:UIControlStateNormal];
    [progressSlider setMinimumTrackImage:[[UIImage imageNamed:@"com_slider_min_l.png"] stretchableImageWithLeftCapWidth:10 topCapHeight:0]forState:UIControlStateNormal];
    [progressSlider addTarget:self action:@selector(doClickProgressButton) forControlEvents:UIControlEventValueChanged];
    [functionView addSubview:progressSlider];
    
    
    //重覆按鈕
    repeatButton=[UIButton buttonWithType:UIButtonTypeCustom];
    repeatButton.frame=CGRectMake(5.0f, 20.0f, 30.0, 30.0f);
    repeatButton.tag=20;
    [repeatButton setImage:[UIImage imageNamed:@"audio_btn_random_h.png"] forState:UIControlStateNormal];
    [repeatButton addTarget:self action:@selector(doClickRepeatButton:) forControlEvents:UIControlEventTouchUpInside];
    [functionView addSubview:repeatButton];
    
    //開始播放時間
    startTime=[[UILabel alloc] initWithFrame:CGRectMake(10.0f, 50.0f, 40.0f, 30.0)];
    startTime.backgroundColor=[UIColor clearColor];
    startTime.text=[NSString stringWithFormat:@"%02d:%02d",0,0];
    startTime.textColor=[UIColor whiteColor];
    startTime.font=[UIFont systemFontOfSize:13.0f];
    [functionView addSubview:startTime];
    
    //歌曲當前的剩下的時間
    currentTime=[[UILabel alloc]initWithFrame:CGRectMake(285.0f, 50.0f, 40.0f, 30.0f)];
    currentTime.backgroundColor=[UIColor clearColor];
    currentTime.text=[NSString stringWithFormat:@"%02d:%02d",0,0];
    currentTime.font=[UIFont systemFontOfSize:13.0f];
    currentTime.textColor=[UIColor whiteColor];
    [functionView addSubview:currentTime];
    
    //中間的空間背景圖
    transitionView=[[UIView alloc] initWithFrame:CGRectMake(0, 88, 320, 416-90-44)];
    [self.view addSubview:transitionView];
  
    //邊框
    borderView=[[UIImageView alloc]initWithFrame:CGRectMake(60.0f, 90.0f-44.0f, 200.0f, 200.0f)];
    borderView.image=[UIImage imageNamed:@"audio_cover_bg.png"];
    borderView.tag=200;
    transitionView.userInteractionEnabled=YES;
    [transitionView addSubview:borderView];
    
    //空間圖
    middleView=[[UIView alloc]initWithFrame:CGRectMake(15.0f, 15.0f, 170.0f, 170.0f)];
    middleView.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"audio_album_default.png"]];
    middleView.alpha=1.0f;
    middleView.tag=201;
    [borderView addSubview:middleView];
  
    
    UITapGestureRecognizer *tapGes=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGes)];
    [transitionView addGestureRecognizer:tapGes];

}
#pragma -mark -AVAudioPlayerDelegate
-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag{
    currentIndex++;
    if (currentIndex == musicArray.count) {
        currentIndex = 0;
    }
    
    [self loadMusic:[musicArray objectAtIndex:currentIndex] type:@"mp3"];
    musicNameLabel.text = [musicArray objectAtIndex:currentIndex];
    [_player play];
}
#pragma -mark -functions
-(void)loadMusic:(NSString*)name type:(NSString*)type
{
    NSString* path= [[NSBundle mainBundle] pathForResource: name ofType:type];
    
    NSURL* url = [NSURL fileURLWithPath:path];
    
    _player= [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
    _player.delegate=self;
    _player.volume= volumeSlider.value;
    [_player prepareToPlay];
    
}
#pragma -mark -doClickActions
//點擊背景圖的時候,歌曲進度所在的部分隱藏
-(void)tapGes{
    if (overLayView.hidden == YES) {
        overLayView.hidden = NO;
    }else{
        overLayView.hidden = YES;
    }
}
//聲音播放的條
-(void)doClickProgressButton{
    _player.volume = volumeSlider.value;
 
}
//前一首歌曲
-(void)doClickPrevButton:(UIButton *)sender{
    BOOL playFlag;
    if (_player.playing) {
        playFlag = YES;
        [_player stop];
    }else{
        playFlag = NO;
    }
    currentIndex--;
    if (currentIndex < 0) {
        currentIndex =musicArray.count - 1;
    }
    [self loadMusic:[musicArray objectAtIndex:currentIndex] type:@"mp3"];
    musicNameLabel.text = [musicArray objectAtIndex:currentIndex];
    if (playFlag == YES) {
        [_player play];
    }
}
//刷新進度條
-(void)refresh{
    progressSlider.value = _player.currentTime/_player.duration;
    startTime.text =   [NSString stringWithFormat:@"%02d:%02d",(int)_player.currentTime/60,(int)_player.currentTime%60];
    currentTime.text = [NSString stringWithFormat:@"%d:%02d",(int)(_player.duration-_player.currentTime)/60,(int)(_player.duration-_player.currentTime)%60];
}
//播放按鈕
-(void)doClickPlayButton:(UIButton *)sender{
    if (_player.playing) {
        [_player pause];
        [playButton setImage:[UIImage imageNamed:@"audio_btn_play_h.png"] forState:UIControlStateNormal];
        [timer invalidate];
    }else{
        [_player play];
        [playButton setImage:[UIImage imageNamed:@"audio_btn_pause_h.png"] forState:UIControlStateNormal];
        //更新下進度條
        timer = [NSTimer scheduledTimerWithTimeInterval:0.05 target:self selector:@selector(refresh) userInfo:nil repeats:YES];
    }
}
//下一首按鈕
-(void)doClickNextButton:(UIButton *)sender{
    BOOL playFlag;
    if (_player.playing) {
        playFlag = YES;
        [_player stop];
    }else{
        playFlag = NO;
    }
    currentIndex++;
    if (currentIndex == musicArray.count) {
        currentIndex = 0;
    }
    [self loadMusic:[musicArray objectAtIndex:currentIndex] type:@"mp3"];
    
    musicNameLabel.text = [musicArray objectAtIndex:currentIndex];
    
    if (playFlag == YES) {
        [_player play];
    }
    
}
//重覆按鈕
-(void)doClickRepeatButton:(UIButton *)sender{
    ;
}
//進度按鈕
-(void)doClickChangeVolume{
    _player.currentTime = _player.duration *progressSlider.value;
}



@end
複製代碼

 

 

   
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 據 techrepublic 報道,每年的年底,總是有很多評論者和預測者喜歡猜想來年的情況,為了秉承這種傳統,本文對 2016 年的 Android 市場提出了 8 個大膽預測。 1、無鎖版設備占統治地位 現在還看不到這點,但無鎖版設備將主導 Android 市場, 而且不是在暗地裡這麼做,這些設備
  • CAShapeLayer 是 CALayer 的子類,但是比 CALayer 更靈活,可以畫出各種圖形,當然,你也可以使用其他方式來畫,隨你。 雜談 在 CAShapeLayer 中,也可以像 CALayer 一樣指定它的 frame 來畫,就像這樣: Objective-C 1 2 3 4 5 l
  • MagicNumber -> autoresizingMask -> autolayout 以上是純手寫代碼所經歷的關於頁面佈局的三個時期 在iphone1-iphone3gs時代 window的size固定為(320,480) 我們只需要簡單計算一下相對位置就好了 在iphone4-iphone4
  • # Sets the target folders and the final framework product.# 如果工程名稱和Framework的Target名稱不一樣的話,要自定義FMKNAME# 例如: FMK_NAME = "MyFramework"FMK_NAME=${PROJECT
  • 作者fanyinan,源碼PuzzleProject,公司的項目中需要一個拼圖游戲,之前有手動拼圖和隨機打亂的功能,近期又由於個(xian)人(zhe)愛(dan)好(teng)自己加入了自動拼圖功能。 源碼下載:http://code.662p.com/view/12527.html <ignor
  • 軟體功能:模仿陌陌客戶端,功能很相似,註冊、登陸、上傳照片、瀏覽照片、瀏覽查找附近會員、關註、取消關註、聊天、語音和文字聊天,還有拼車和搭車的功能,支持微博分享和查找好友。 後臺是php+mysql,前臺是xcode工程 源碼下載:http://code.662p.com/view/1652.htm
  • 高仿人人網客戶端,有興趣的盆友可以研究下,裡面主要包含的一些UI設計與交互。(註:項目中有少許問題,apk能運行,希望開發者可以參考代碼研究一下。) 源碼下載:http://code.662p.com/list/11_1.html <ignore_js_op> [/td][td] [/td][td]
  • 這個叫指讀的App設計簡約,走MD風格,UI設計很清新,我個人挺喜歡。 這次上傳的源碼是在Eclipse環境開發的,儘管放心啦上次找源碼的時候不知道來源,也不知道原作者,很抱歉。這個設計精美的app是來自洋蔥先森大神的。大家可以向他學習 源碼下載:http://code.662p.com/list/
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...