ios – 如何在Swift 2 / AVPlayer中恢复背景音频?

前端之家收集整理的这篇文章主要介绍了ios – 如何在Swift 2 / AVPlayer中恢复背景音频?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习 Swift作为我的第一门编程语言.

中断后我已经挣了好几个小时才恢复背景音频播放(例如通话)

应该怎么做:

>当应用程序转到后台时,音频会继续播放(工作)
>当被呼叫中断时,开始通知中断
(作品)
>通话结束后,获取中断通知
结束(工作)
>继续播放音频(不起作用 – 什么都听不到)

真的很感激任何帮助!谢谢

笔记:

>该应用程序已注册为背景音频,并在中断前播放正常
>我已经尝试过,没有时间延迟恢复播放 – 都没有工作

码:

  1. import UIKit
  2. import AVFoundation
  3.  
  4. var player: AVQueuePlayer!
  5.  
  6. class ViewController: UIViewController {
  7.  
  8. override func viewDidLoad() {
  9. super.viewDidLoad()
  10. do {
  11. try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
  12. try AVAudioSession.sharedInstance().setActive(true,withOptions: .NotifyOthersOnDeactivation)
  13. } catch { }
  14. let songNames = ["music"]
  15. let songs = songNames.map { AVPlayerItem(URL:
  16. NSBundle.mainBundle().URLForResource($0,withExtension: "mp3")!) }
  17. player = AVQueuePlayer(items: songs)
  18.  
  19. let theSession = AVAudioSession.sharedInstance()
  20. NSNotificationCenter.defaultCenter().addObserver(self,selector:"playInterrupt:",name:AVAudioSessionInterruptionNotification,object: theSession)
  21.  
  22. player.play()
  23. }
  24.  
  25. func playInterrupt(notification: NSNotification) {
  26.  
  27. if notification.name == AVAudioSessionInterruptionNotification
  28. && notification.userInfo != nil {
  29.  
  30. var info = notification.userInfo!
  31. var intValue: UInt = 0
  32. (info[AVAudioSessionInterruptionTypeKey] as! NSValue).getValue(&intValue)
  33. if let type = AVAudioSessionInterruptionType(rawValue: intValue) {
  34. switch type {
  35. case .Began:
  36. print("aaaaarrrrgggg you stole me")
  37. player.pause()
  38.  
  39. case .Ended:
  40. let timer = NSTimer.scheduledTimerWithTimeInterval(3,target: self,selector: "resumeNow:",userInfo: nil,repeats: false)
  41. }
  42. }
  43. }
  44. }
  45. func resumeNow(timer : NSTimer) {
  46. player.play()
  47. print("attempted restart")
  48. }
  49. }

解决方法

终于明白了!

解决方案:通过将setCategory行更改为:添加了mixable选项:

AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback,withOptions:AVAudioSessionCategoryOptions.MixWithOthers)

猜你在找的iOS相关文章