在 Swift3 中自动旋转电影查看屏幕

Auto Rotates Movie View Screen in Swift3

当我点击播放按钮时,mediaPlayer 视图显示下图。 播放mediaPlayer时如何自动旋转?请!帮帮我。

在您的 ViewController.m 文件中添加这一行

  override func supportedInterfaceOrientations() -> Int {
  return Int(UIInterfaceOrientationMask.Landscape.rawValue)
}

override func preferredInterfaceOrientationForPresentation() -> UIInterfaceOrientation {
  return UIInterfaceOrientation.LandscapeLeft
}

override func shouldAutorotate() -> Bool {
  return false
}

并且应该显示 viewcontoller。