UIWindow+Ext.swift
482 字节
//
// UIWindow+Ext.swift
// NumberCube
//
// Created by ilCode on 2025/3/27.
//
import Foundation
extension UIWindow {
static var isLandscape: Bool {
if #available(iOS 13.0, *) {
return UIApplication.shared.windows
.first?
.windowScene?
.interfaceOrientation
.isLandscape ?? false
} else {
return UIApplication.shared.statusBarOrientation.isLandscape
}
}
}