Skip to content

Instantly share code, notes, and snippets.

@Yorzic
Created September 4, 2020 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yorzic/feea26c92197ad565b9a49c96a5712f1 to your computer and use it in GitHub Desktop.
Save Yorzic/feea26c92197ad565b9a49c96a5712f1 to your computer and use it in GitHub Desktop.
Detect environment
override func viewDidLoad() {
super.viewDidLoad()
#if DEVELOPMENT
print("Development environment.")
#elseif PRODUCTION
print("Production environment.")
#else
print("Unknown environment.")
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment