mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
32 lines
933 B
Swift
32 lines
933 B
Swift
import AVKit
|
|
import Foundation
|
|
|
|
final class MacOSPiPDelegate: NSObject, AVPlayerViewPictureInPictureDelegate {
|
|
static let shared = MacOSPiPDelegate()
|
|
|
|
var playerModel: PlayerModel { .shared }
|
|
|
|
func playerViewShouldAutomaticallyDismissAtPicture(inPictureStart _: AVPlayerView) -> Bool {
|
|
false
|
|
}
|
|
|
|
func playerViewWillStartPicture(inPicture _: AVPlayerView) {
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { [weak self] in
|
|
self?.playerModel.playingInPictureInPicture = true
|
|
self?.playerModel.hide()
|
|
}
|
|
}
|
|
|
|
func playerViewWillStopPicture(inPicture _: AVPlayerView) {
|
|
playerModel.show()
|
|
playerModel.playingInPictureInPicture = false
|
|
}
|
|
|
|
func playerView(
|
|
_: AVPlayerView,
|
|
restoreUserInterfaceForPictureInPictureStopWithCompletionHandler completionHandler: (Bool) -> Void
|
|
) {
|
|
completionHandler(true)
|
|
}
|
|
}
|