RosettaCodeData/Task/Enumerations/Objective-C/enumerations.m
2015-02-20 00:35:01 -05:00

3 lines
137 B
Objective-C

typedef NS_ENUM(NSInteger, fruits) { apple, banana, cherry };
typedef NS_ENUM(NSInteger, fruits) { apple = 0, banana = 1, cherry = 2 };