Memory leak in iOS, AVPlayer is never deallocated

后端 未结 2 1618
慢半拍i
慢半拍i 2021-02-07 16:09

I used the AVPlayerDemo sample from the Apple docs and wrote my own UI on top of it to play videos selected from a UITableViewController. Now, the problem is that there\'s a mem

2条回答
  •  别那么骄傲
    2021-02-07 16:43

    I had the same issue as you, but I managed to fix the memory leak by calling this on viewDidDisappear:

    self.avPlayer?.replaceCurrentItem(with: nil)
    

提交回复
热议问题