Files
mediaplayer/ios/OralTrainer/AppDelegate.swift
2026-08-17 20:13:28 +08:00

13 lines
347 B
Swift

import UIKit
final class AppDelegate: NSObject, UIApplicationDelegate {
static var orientationLock: UIInterfaceOrientationMask = .portrait
func application(
_ application: UIApplication,
supportedInterfaceOrientationsFor window: UIWindow?
) -> UIInterfaceOrientationMask {
AppDelegate.orientationLock
}
}