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

我正在学习 Swift作为我的第一门编程语言.

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

应该怎么做:

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

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

笔记:

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

码:

import UIKit
import AVFoundation

var player: AVQueuePlayer!

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        do {
            try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
            try AVAudioSession.sharedInstance().setActive(true,withOptions: .NotifyOthersOnDeactivation)
        } catch { }
        let songNames = ["music"]
        let songs = songNames.map { AVPlayerItem(URL:
            NSBundle.mainBundle().URLForResource($0,withExtension: "mp3")!) }
        player = AVQueuePlayer(items: songs)

        let theSession = AVAudioSession.sharedInstance()
        NSNotificationCenter.defaultCenter().addObserver(self,selector:"playInterrupt:",name:AVAudioSessionInterruptionNotification,object: theSession)

        player.play()
    }

    func playInterrupt(notification: NSNotification) {

        if notification.name == AVAudioSessionInterruptionNotification
            && notification.userInfo != nil {

            var info = notification.userInfo!
            var intValue: UInt = 0
            (info[AVAudioSessionInterruptionTypeKey] as! NSValue).getValue(&intValue)
            if let type = AVAudioSessionInterruptionType(rawValue: intValue) {
                switch type {
                case .Began:
                    print("aaaaarrrrgggg you stole me")
                    player.pause()

                case .Ended:
                    let timer = NSTimer.scheduledTimerWithTimeInterval(3,target: self,selector: "resumeNow:",userInfo: nil,repeats: false)
                }
            }
        }
    }
    func resumeNow(timer : NSTimer) {
        player.play()
        print("attempted restart")
    }
}

解决方法

终于明白了!

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

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

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...