在Swift3中自动旋转电影视图屏幕

时间:2017-03-29 08:05:15

标签: ios xcode swift3 media-player

单击“播放”按钮时,mediaPlayer视图显示以下图片。 播放mediaPlayer时如何自动旋转?请!帮助我。

1 个答案:

答案 0 :(得分:0)

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。