如何隐藏 AVPictureInPictureController 中的播放/暂停按钮?

liu*_*nxi 5 objective-c ios avplayer swift

我在使用 AVPictureInPictureController 的应用程序中使用画中画功能,我想隐藏 AVPictureInPictureController 中的播放/暂停按钮,但失败了。我想我现在需要帮助。

小智 1

尝试这个:

    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")
Run Code Online (Sandbox Code Playgroud)

  • 嗯,这会在 App Store 评论中被接受吗?感觉像是私有属性... (2认同)