Created
November 27, 2012 14:56
-
-
Save sendoa/4154648 to your computer and use it in GitHub Desktop.
Modern enum en Objective-C
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
// http://objective-c.es/modern-objective-c-enum/ | |
// http://nshipster.com/ns_enum-ns_options/ | |
typedef NS_ENUM(NSUInteger, GBDaysOfWeek) { | |
GBSunday, | |
GBMonday, | |
GBTuesday, | |
GBWednesday, | |
GBThursday, | |
GBFriday, | |
GBSaturday | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment