我希望我的应用程序以横向左右模式运行。以下是我的代码。我为UIViewController创建了一个扩展,并在扩展文件中编写了以下代码。
func shouldAutorotate() -> Bool {
return true
}
func supportedInterfaceOrientations() -> Int {
return Int(UIInterfaceOrientationMask.LandscapeRight.rawValue) | Int(UIInterfaceOrientationMask.LandscapeLeft.rawValue)
}
但是这段代码没有按预期工作。
当我在横向左侧模式中将设备上下颠倒时,仅旋转充电条。不是我的视图控制器。需要帮助。