我看到这个问题以多种形式发布,但答案要么不适合我,要么是obj-C。在我的项目设置中,我将所有视图的设备方向设置为纵向。如何仅强制单个视图显示横向(禁用旋转)?
答案 0 :(得分:0)
使用此功能可将方向设置为横向左,右或横向
override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask {
return UIInterfaceOrientationMask.LandscapeLeft; // can also do .Landscape or .LandscapeRight
}