在macOS应用程序中使用时,是否可以更改AVPlayerView的背景色。我想这样做是为了在播放视频时删除黑条。
我尝试过以下几种方法:
videoView.contentOverlayView?.wantsLayer = true
videoView.contentOverlayView?.layer?.backgroundColor = NSColor.blue.cgColor
我还尝试添加以下内容:
view.wantsLayer = true
videoView.wantsLayer = true
但是背景仍然是黑色的。
https://stackoverflow.com/questions/50776976
复制相似问题