单击“播放”按钮时,mediaPlayer视图显示以下图片。 播放mediaPlayer时如何自动旋转?请!帮助我。
答案 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。