LPPloveROU 2012-12-19 06:35 采纳率: 50%
浏览 2257

xcode中播放和暂停键

用代码实现一个播放/暂停键

- (IBAction)min:(id)sender 
{
  NSString *path = [[NSBundle mainBundle] pathForResource:@"1min" ofType:@"mp3"];
  AVAudioPlayer *theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
                  theAudio.delegate = self;
                  theAudio.numberOfLoops = -1;
                  [theAudio play];
                  [[NSUserDefaults standardUserDefaults] setObject:@"-" forKey:@"music"]; 
}

用同一个按钮。

  • 写回答

1条回答

  • Mr_me 2012-12-19 08:28
    关注

    在.h 文件进行theAudio声明:

    AVAudioPlayer *theAudio;
    

    代码加入到方法中 :

    UIButton *button = (UIButton *)sender;
    
    button.selected = !button.selected;
    
    if(button.selected)
    {
       // Play
       NSString *path = [[NSBundle mainBundle] pathForResource:@"1min" ofType:@"mp3"];
       theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
       theAudio.delegate = self;
       theAudio.numberOfLoops = -1;
       [theAudio play];
       [[NSUserDefaults standardUserDefaults] setObject:@"-" forKey:@"music"];
    }
    else
    {
      // Pause
      [theAudio pause];
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料