Skip to content

Instantly share code, notes, and snippets.

@SwapnanilDhol
Created February 23, 2020 09:18
Show Gist options
  • Save SwapnanilDhol/5e26f3714c1dd33c28ad120e4223dba4 to your computer and use it in GitHub Desktop.
Save SwapnanilDhol/5e26f3714c1dd33c28ad120e4223dba4 to your computer and use it in GitHub Desktop.
UIDeviceExtension
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