码迷,mamicode.com
首页 > 其他好文 > 详细

使用AVAudioPlayer播放音乐文件无声音

时间:2017-04-22 12:56:32      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:file   style   size   放音   nbsp   xcode   font   ber   number   

使用AVAudioPlayer播放本地音乐文件。

1、声明全局AudioPlayer变量:

@property(nonatomic,strong)AVAudioPlayer *movePlayer ; 
 
2、初始化变量并播放:
NSString *tmp=[[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:@"a.mp3"]; 
//NSString * tmp = [[NSBundle mainBundle] pathForResource:@"a" ofType:@"mp3"]; 
NSURL *medioUrl=[NSURL fileURLWithPath:[[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:@"audio/move.mp3"]];  
NSError *err=nil;  
self.movePlayer=[[AVAudioPlayer alloc] initWithContentsOfURL:medioUrl error:&err];  
self.movePlayer.volume=1.0;  
[self.movePlayer prepareToPlay];

if (err!=nil) {  

NSLog(@"move player init error:%@",err);  

}else {  

 [self.movePlayer play]; 

}

3、AVAudioPlayer 模拟器有声音,真机耳机有声音,扬音器没有声音解决办法

在创建:AVAudioPlayer前,加入以下代码

AVAudioSession *audioSession = [AVAudioSession sharedInstance];  

[audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];  

[audioSession setActive:YES error:nil]; 

 

使用AVAudioPlayer播放音乐文件无声音

标签:file   style   size   放音   nbsp   xcode   font   ber   number   

原文地址:http://www.cnblogs.com/huaixu/p/6747268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!