AVPlayerViewController在全屏模式下无法播放的问题可能是由以下设置导致的:
let playerViewController = AVPlayerViewController()
playerViewController.allowsPictureInPicturePlayback = true
let playerViewController = AVPlayerViewController()
playerViewController.modalPresentationStyle = .overFullScreen
let playerViewController = AVPlayerViewController()
playerViewController.modalTransitionStyle = .flipHorizontal
请注意,这些解决方法适用于Swift语言,如果您使用的是Objective-C语言,请相应地调整代码。另外,根据您的具体需求,您可能需要根据实际情况进行调整和修改。