AVPlayer not playing audio - iOS 9, Objective - C

后端 未结 2 399
名媛妹妹
名媛妹妹 2021-02-06 04:26

I am trying to play audio from a URL in my app. Everything happens as expected in iOS 8 (simulator and physical devices). For iOS 9, it works in simulator but on device, the aud

2条回答
  •  星月不相逢
    2021-02-06 04:58

    For anyone with this same issue, here is the Swift solution.

    try! AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback, with: [])
    

    And some documentation

提交回复
热议问题