Last active
October 19, 2022 21:46
-
-
Save sindresorhus/e304f157e1fc2b4e63dedc151b25b583 to your computer and use it in GitHub Desktop.
Revisions
-
sindresorhus revised this gist
Oct 19, 2022 . No changes.There are no files selected for viewing
-
sindresorhus created this gist
Oct 17, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ private protocol SilenceDeprecationForUIScreenWindows { var screens: [UIScreen] { get } } private final class SilenceDeprecationForUIScreenWindowsImplementation: SilenceDeprecationForUIScreenWindows { @available(iOS, deprecated: 16) var screens: [UIScreen] { UIScreen.screens } } extension UIScreen { static var screens2: [UIScreen] { (SilenceDeprecationForUIScreenWindowsImplementation() as SilenceDeprecationForUIScreenWindows).screens } }