Skip to content

Instantly share code, notes, and snippets.

@victorchee
Created June 28, 2019 02:39
Show Gist options
  • Save victorchee/43ee45814c642a52b9ef8e57906d1559 to your computer and use it in GitHub Desktop.
Save victorchee/43ee45814c642a52b9ef8e57906d1559 to your computer and use it in GitHub Desktop.
// Objective-C
#if TARGET_IPHONE_SIMULATOR
// Simulator
#else
// Device
#endif
// Swift
#if targetEnvironment(simulator)
// your simulator code
#else
// your real device code
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment