Created
September 4, 2020 06:03
-
-
Save Yorzic/feea26c92197ad565b9a49c96a5712f1 to your computer and use it in GitHub Desktop.
Detect environment
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
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