How to hidden the Play/Pause buttons in the AVPictureInPictureController?

Viewed 644

I'm using Picture in Picture feature in my application using AVPictureInPictureController,I wanted to hidden the Play/Pause buttons in the AVPictureInPictureController but I was failed. I think I need help now.

1 Answers

Try this:

    if #available(iOS 14.0, *) {
        //Hide the seekbar
        pipController?.requiresLinearPlayback = true
    } else {
        // Fallback on earlier versions
    }
    
    //Hide the play/pause controls
    pipController?.setValue(1, forKey: "controlsStyle")
Related