12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // UIScreen.swift
- // TSLiveWallpaper
- //
- // Created by 100Years on 2024/12/23.
- //
- public extension UIScreen {
-
- public static var _scale: CGFloat {
- if #available(iOS 13.0, *), Thread.isMainThread,
- let scale = UIApplication._keyWindow?.windowScene?.screen.scale {
- return scale
- }
- return main.scale
- }
-
- public static var _width: CGFloat {
- if #available(iOS 13.0, *), Thread.isMainThread,
- let width = UIApplication._keyWindow?.windowScene?.screen.bounds.width {
- return width
- }
- return main.bounds.width
- }
-
- public static var _height: CGFloat {
- if #available(iOS 13.0, *), Thread.isMainThread,
- let height = UIApplication._keyWindow?.windowScene?.screen.bounds.height {
- return height
- }
- return main.bounds.height
- }
-
- public static var _size: CGSize {
- if #available(iOS 13.0, *), Thread.isMainThread,
- let size = UIApplication._keyWindow?.windowScene?.screen.bounds.size {
- return size
- }
- return main.bounds.size
- }
-
- }
|