Created
November 16, 2015 08:20
-
-
Save MaximAlien/c9799af713b2b95ccd6c to your computer and use it in GitHub Desktop.
[iOS] Check for Debug/Release
This file contains 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
#if DEBUG | |
println("debug") | |
#else | |
println("Not debug") | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment