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.
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.
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")