Skip to main content
added 3 characters in body
Source Link
Midhun
  • 2.2k
  • 19
  • 28

XCODE 9 AND ABOVE

#if DEVELOP
    //print("Develop")
#elseif PRODCTNPRODUCTION
    //print("Production")
#else
    //
#endif

XCODE 9 AND ABOVE

#if DEVELOP
    //print("Develop")
#elseif PRODCTN
    //print("Production")
#else
    //
#endif

XCODE 9 AND ABOVE

#if DEVELOP
    //print("Develop")
#elseif PRODUCTION
    //print("Production")
#else
    //
#endif
Modified print statement
Source Link
Midhun
  • 2.2k
  • 19
  • 28

XCODE 9 AND ABOVE

#if DEVELOP
    //print("Develop")
#elseif PRODCTN
    //print("Production")
#else
    //
#endif

XCODE 9 AND ABOVE

#if DEVELOP
    //
#elseif PRODCTN
    //
#else
    //
#endif

XCODE 9 AND ABOVE

#if DEVELOP
    //print("Develop")
#elseif PRODCTN
    //print("Production")
#else
    //
#endif
not working without the hashtag
Source Link
kuzdu
  • 7.5k
  • 1
  • 57
  • 74

XCODE 9 AND ABOVE

if#if DEVELOP
    //
#elseif PRODCTN
    //
#else
    //
#endif

XCODE 9 AND ABOVE

if DEVELOP
    //
#elseif PRODCTN
    //
#else
    //
#endif

XCODE 9 AND ABOVE

#if DEVELOP
    //
#elseif PRODCTN
    //
#else
    //
#endif
Source Link
Midhun
  • 2.2k
  • 19
  • 28
Loading