播放音效
IOS開辟進程中能夠會碰到播放音效的功效
其實很簡略,IOS曾經供給了一個框架直接擔任播放音效 AudioToolbox.framework
新建項目 TestWeChatSounds
給新建的項目導入AudioToolbox.framework
導入勝利以後以下圖
項目目次以下
接上去我們給項目中添加幾個caf格局的音效文件
接上去 我們翻開 項目默許生成的ViewController中添加代碼
導入 AudioToolbox
#import <AudioToolbox/AudioToolbox.h>
給View上添加button點擊以後播放音效
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
UIButton *btn1=[[UIButton alloc] initWithFrame:CGRectMake(20, 100, 120, 36)];
[btn1 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[btn1 setTitle:@"正告" forState:UIControlStateNormal];
[btn1 addTarget:self action:@selector(btn1Act) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn1];
UIButton *btn2=[[UIButton alloc] initWithFrame:CGRectMake(20, 150, 120, 36)];
[btn2 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[btn2 setTitle:@"毛病" forState:UIControlStateNormal];
[btn2 addTarget:self action:@selector(btn2Act) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn2];
}
完成播放後果
-(void)btn1Act {
[self playSoundEffect:@"alarm.caf"];
}
-(void)btn2Act {
[self playSoundEffect:@"ct-error.caf"];
}
-(void)playSoundEffect:(NSString *)name{
NSString *audioFile=[[NSBundle mainBundle] pathForResource:name ofType:nil];
NSURL *fileUrl=[NSURL fileURLWithPath:audioFile];
//1.取得體系聲響ID
SystemSoundID soundID=0;
/**
* inFileUrl:音頻文件url
* outSystemSoundID:聲響id(此函數會將音效文件參加到體系音頻辦事中並前往一個長整形ID)
*/
AudIOServicesCreateSystemSoundID((__bridge CFURLRef)(fileUrl), &soundID);
//假如須要在播放完以後履行某些操作,可以挪用以下辦法注冊一個播放完成回調函數
AudioServicesAddSystemSoundCompletion(soundID, NULL, NULL, soundCompleteCallback, NULL);
//2.播放音頻
AudioServicesPlaySystemSound(soundID);//播放音效
// AudioServicesPlayAlertSound(soundID);//播放音效並震撼
}
void soundCompleteCallback(SystemSoundID soundID,voidvoid * clientData){
NSLog(@"播放完成...");
}
代碼部門截圖
好了播放音效根本完成 。
播放音樂
我們異樣應用蘋果供給的框架 AVFoundation.framework
起首,新建項目
給項目起名: TestAVGoundation
接上去導入framework
導入勝利以後以下
項目構造
開端寫代碼之前,我們找一首歌曲放到項目中
這裡我們放一首比擬經典的歌曲 周華健的 同伙
異樣我們照樣翻開項目默許生成的ViewController.m 在外面添加播放功效
起首,導入頭文件
#import <AVFoundation/AVFoundation.h>
接上去,創立個控件
@property (nonatomic,strong) AVAudioPlayer *audioPlayer;//播放器
@property (strong, nonatomic) UIProgressView *playProgress;//播放進度
@property (strong, nonatomic) UIButton *playOrPause; //播放/暫停按鈕(假如tag為0以為是暫停狀況,1是播放狀況)
@property (strong ,nonatomic) NSTimer *timer;//進度更新准時器
初始化界面
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.view.backgroundColor=[UIColor lightGrayColor];
[self initUserFace];
}
-(void)initUserFace{
//添加playProgress
_playProgress= [[UIProgressView alloc] initWithProgressViewStyle: UIProgressViewStyleDefault];
_playProgress.frame=CGRectMake(0, 100, self.view.bounds.size.width, 36);
[self.view addSubview:_playProgress];
//添加播放按鈕
_playOrPause=[[UIButton alloc]initWithFrame:CGRectMake(0, 150, 120, 36)];
[_playOrPause setTitle:@"播放" forState:UIControlStateNormal];
[_playOrPause setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[_playOrPause addTarget:self action:@selector(playOrPauseAct:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:_playOrPause];
}
添加幾個播放,暫停,修正歌曲進度條顯示的辦法
-(NSTimer *)timer{
if (!_timer) {
_timer=[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(updateProgress) userInfo:nil repeats:true];
}
return _timer;
}
-(AVAudioPlayer *)audioPlayer{
if (!_audioPlayer) {
NSString *urlStr=[[NSBundle mainBundle]pathForResource:@"同伙.mp3" ofType:nil];
NSURL *url=[NSURL fileURLWithPath:urlStr];
NSError *error=nil;
//初始化播放器,留意這裡的Url參數只能時文件途徑,不支撐HTTP Url
_audioPlayer=[[AVAudioPlayer alloc]initWithContentsOfURL:url error:&error];
//設置播放器屬性
_audioPlayer.numberOfLoops=0;//設置為0不輪回
_audioPlayer.delegate=self;
[_audioPlayer prepareToPlay];//加載音頻文件到緩存
if(error){
NSLog(@"初始化播放器進程產生毛病,毛病信息:%@",error.localizedDescription);
return nil;
}
}
return _audioPlayer;
}
/**
* 播放音頻
*/
-(void)play{
if (![self.audioPlayer isPlaying]) {
[self.audioPlayer play];
self.timer.fireDate=[NSDate distantPast];//恢復准時器
}
}
/**
* 暫停播放
*/
-(void)pause{
if ([self.audioPlayer isPlaying]) {
[self.audioPlayer pause];
self.timer.fireDate=[NSDate distantFuture];//暫停准時器,留意不克不及挪用invalidate辦法,此辦法會撤消,以後沒法恢復
}
}
/**
* 更新播放進度
*/
-(void)updateProgress{
float progress= self.audioPlayer.currentTime /self.audioPlayer.duration;
[self.playProgress setProgress:progress animated:true];
}
#pragma mark - 播放器署理辦法
-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag{
NSLog(@"音樂播放完成...");
[_playOrPause setTitle:@"播放" forState:UIControlStateNormal];
}
我們給播放按鈕添加點擊事宜
-(void)playOrPauseAct:(UIButton *)sender{
NSString *strPlay=sender.titleLabel.text;
NSLog(@"strPlay=%@",strPlay);
if ([strPlay isEqualToString:@"播放"]) {
[sender setTitle:@"暫停" forState:UIControlStateNormal];
[self play];
}else{
[sender setTitle:@"播放" forState:UIControlStateNormal];
[self pause];
}
}
好了,到此 我們創立完成 可以運轉嘗嘗
細心的同伙能夠發明我們的app播放音樂的進程中 假如切換到後台以後發明音樂暫停了 再次翻開 又接著播放了
假如想要後台 也能夠接著播放音樂 我們須要修正兩個處所
1,翻開項目 plist 文件
添加一項
2,翻開ViewController.m 找到以下辦法 添加一段
好了 試下後台運轉吧~
【iOS App中完成播放音效和音樂功效的簡略示例】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!