
单击“播放”按钮时,mediaPlayer视图显示以下图片。当我播放mediaPlayer时,如何自动旋转?请!帮帮我。
发布于 2017-03-29 08:40:48
在ViewController.m文件中添加这一行
override func supportedInterfaceOrientations() -> Int {
return Int(UIInterfaceOrientationMask.Landscape.rawValue)
}
override func preferredInterfaceOrientationForPresentation() -> UIInterfaceOrientation {
return UIInterfaceOrientation.LandscapeLeft
}
override func shouldAutorotate() -> Bool {
return false
}并应提供视图控制器。
https://stackoverflow.com/questions/43087790
复制相似问题