Skip to content

Instantly share code, notes, and snippets.

@oliverbarreto
Forked from sendoa/archivo.m
Created December 8, 2013 09:31
Show Gist options
  • Save oliverbarreto/7855140 to your computer and use it in GitHub Desktop.
Save oliverbarreto/7855140 to your computer and use it in GitHub Desktop.
// 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