Created
February 23, 2020 09:18
-
-
Save SwapnanilDhol/5e26f3714c1dd33c28ad120e4223dba4 to your computer and use it in GitHub Desktop.
UIDeviceExtension
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 characters
extension UIDevice | |
{ | |
var deviceType: DeviceType? { | |
#if targetEnvironment(macCatalyst) | |
return .mac | |
#else | |
switch UIDevice.current.userInterfaceIdiom | |
{ | |
case .phone: | |
return .phone | |
case .pad: | |
return .pad | |
default: | |
return nil | |
} | |
#endif | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment