ios播放音乐

1、背景音乐播放    循环播放长音乐  支持mp3格式 

#import <AVFoundation/AVFoundation.h>;

ios播放音乐
 1 NSString *musicFilePath = [[NSBundle mainBundle] pathForResource:@"changan" ofType:@"mp3"]; //创建音乐文件路径
 2 NSURL *musicURL = [[NSURL alloc] initFileURLWithPath:musicFilePath];
 3 
 4 AVAudioPlayer *thePlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:musicURL error:nil];
 5 
 6 //创建播放器
 7 self.myBackMusic = thePlayer; //赋值给自己定义的类变量
 8 
 9 [musicURL release];
10 [thePlayer release];
11 
12 [myBackMusic prepareToPlay];
13 [myBackMusic setVolume:1]; //设置音量大小
14 myBackMusic.numberOfLoops = -1;//设置音乐播放次数 -1为一直循环
15 [myBackMusic play]; //播放
ios播放音乐

 

2、音效播放        短声音

#import <AudioToolbox/AudioToolbox.h>   

ios播放音乐
NSString *thesoundFilePath = [[NSBundle mainBundle] pathForResource:@"Clapping Crowd Studio 01" ofType:@"caf"]; //创建音乐文件路径
CFURLRef thesoundURL = (CFURLRef) [NSURL fileURLWithPath:thesoundFilePath];
AudioServicesCreateSystemSoundID(thesoundURL, &sameViewSoundID);

//变量SoundID与URL对应
AudioServicesPlaySystemSound(sameViewSoundID); //播放SoundID声音
ios播放音乐

 

 

 

ios播放音乐,布布扣,bubuko.com

ios播放音乐

上一篇:android课设


下一篇:IOS分层架构设计时xcode5.0 Build Phases选项卡 右下角找不到Add Build Phase