Skip to content

Instantly share code, notes, and snippets.

@dreampiggy
Created April 13, 2017 07:20
Show Gist options
  • Save dreampiggy/468c79e486fe445857c302da93601ebe to your computer and use it in GitHub Desktop.
Save dreampiggy/468c79e486fe445857c302da93601ebe to your computer and use it in GitHub Desktop.
Objective-C NSString Switch Case Macro
#ifndef TTD_SWITCH_STRING
#define TTD_SWITCH_STRING
#define TTD_CASE(str) if ([__s__ isEqualToString:(str)])
#define TTD_SWITCH(s) for (NSString *__s__ = (s); ; )
#define TTD_DEFAULT
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment