iPad 开发禁止横屏

1.在项目的target里设置【去除勾选支持的方向】,还需要勾选Full Screen选项【默认没有勾选,此时需要勾选】在 Target里面:

image.png

  1. AppDelegate里面:
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
        return .portrait
    }

你可能感兴趣的:(iPad 开发禁止横屏)