我正在尝试开发视频播放器应用程序。当用户点击视频时,它将以横向模式开始播放。在这种情况下,我强迫用户旋转屏幕。这是针对iOS UI指南的吗?因为这是我在应用评论中遇到的任何问题。请指导我。
答案 0 :(得分:2)
Swift 3.0
在viewDidLoad()中添加:
let value = UIInterfaceOrientation.landscapeLeft.rawValue
UIDevice.current.setValue(value, forKey: "orientation")
和
override func shouldAutorotate() -> Bool {
return true
}