Skip to content

Instantly share code, notes, and snippets.

@Agarunov
Created April 2, 2018 21:19
Show Gist options
  • Save Agarunov/674ee90996346214b8e30e21743cbb75 to your computer and use it in GitHub Desktop.
Save Agarunov/674ee90996346214b8e30e21743cbb75 to your computer and use it in GitHub Desktop.
// Swift 4.1
#if targetEnvironment(simulator)
// Simulator!
#endif
// Swift 4.0
#if (arch(i386) || arch(x86_64)) && os(iOS)
// Simulator!
#else
// Device!
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment