在iPhone播放背景音乐和按键生效的代码

 

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

 

这种播放音乐的方式导入框架#import <AVFoundation/AVFoundation.h>;

 

NSString *musicFilePath = [[NSBundle mainBundle] pathForResource:@"changan" ofType:@"mp3"];       //创建音乐文件路径

  NSURL *musicURL = [[NSURL alloc] initFileURLWithPath:musicFilePath];  

 

   AVAudioPlayer *thePlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:musicURL error:nil];

 

// 创建播放器

  self.myBackMusic = thePlayer;    //赋值给自己定义的类变量

 

  [musicURL release];

  [thePlayer release];

 

  [myBackMusic prepareToPlay];

  [myBackMusic setVolume:1];   //设置音量大小

  myBackMusic.numberOfLoops = -1;//设置音乐播放次数  -1为一直循环

  if (mainMusicStatus) 

  {

   [myBackMusic play];   //播放

  }

 

  2、按钮播放声音

需要导入框架#import <AudioToolbox/AudioToolbox.h>   

 

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声音

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值