一、工程圖
鹿寨網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護(hù)。創(chuàng)新互聯(lián)從2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
二、代碼
RootViewController.h
#import//加入AVFoundation.framework頭文件 #import @interface RootViewController : UIViewController { //播放器player AVAudioPlayer *avAudioPlayer; } @end
RootViewController.m
#import "RootViewController.h" //導(dǎo)入AVFoundation.framework #import@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]; // Do any additional setup after loading the view. self.title=@"MP3的播放"; } -(void)initPlay { //從budle路徑下讀取音頻文件 NSString *string = [[NSBundle mainBundle] pathForResource:@"母親" ofType:@"mp3"]; //把音頻文件轉(zhuǎn)換成url格式 NSURL *url = [NSURL fileURLWithPath:string]; //初始化音頻類 并且添加播放文件 avAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil]; //開始進(jìn)行播放 [avAudioPlayer play]; }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。