我想在纵向模式下锁定我的viewController,我尝试使用以下行,但它们没有工作:
override func shouldAutorotate() -> Bool {
return false
}
override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
let orientation: UIInterfaceOrientationMask = [UIInterfaceOrientationMask.Portrait, UIInterfaceOrientationMask.PortraitUpsideDown]
return orientation
}
我该如何正确实现这个目标?
答案 0 :(得分:1)
如果您尝试为应用程序设置一个方向,请按照以下步骤操作。