Skip to content

Instantly share code, notes, and snippets.

@fedejordan
Created July 7, 2022 17:30
Show Gist options
  • Save fedejordan/fe9725fe17774346ebc96a6c2529313f to your computer and use it in GitHub Desktop.
Save fedejordan/fe9725fe17774346ebc96a6c2529313f to your computer and use it in GitHub Desktop.
Blog15 - AppDelegate with #if
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
#if DEBUG
print("This is the STDevelopment scheme, using Development configuration with Development.xcconfig")
#endif
#if RELEASE
print("This is the STProduction scheme, using Production configuration with Production.xcconfig")
#endif
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment