Constants
extern const int COACHMARK_ALL;
extern const int COACHMARK_NEW;
@interface ...
...
@end
const int COACHMARK_ALL = 8;
const int COACHMARK_NEW = 3;
@implementation ...
...
@end
NS_ENUM
typedef NS_ENUM(NSInteger, CoachMark) {
CoachMarkAll = 8,
CoachMarkNew = 3,
CoachMarkMagicNumber = 1,
};
@interface ...
...
@end
More info on NS_ENUM is available at NSHipster.