79364447

Date: 2025-01-17 10:35:32
Score: 1
Natty:
Report link

I found solution. Problem was in UIScene when appliaction did to background. AVPictureInPicture need during activation also active UIScene.

I changed Observer to uiSceneWillDeactivate where I activate PiP

NotificationCenter.default.addObserver(
    self,
    selector: #selector(uiSceneWillDeactivate),
    name: UIScene.willDeactivateNotification,
    object: nil
)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Krenem00