Created
April 13, 2017 07:20
-
-
Save dreampiggy/468c79e486fe445857c302da93601ebe to your computer and use it in GitHub Desktop.
Objective-C NSString Switch Case Macro
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
#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