iOS-枚举的使用

在iOS中枚举类型的使用方式,NS_ENUM(类型,类名)。

typedef NS_ENUM(NSUInteger, ViewType) {
    Contacts_Stranger,//陌生人
    Contacts_NormalFriend,//普通好友
    Contacts_SpecialFriend,//特别关心好友
};
typedef NS_OPTIONS(NSUInteger, PermittedDirection) {
    PermittedDirectionUp    = 1 << 0,
    PermittedDirectionDown  = 1 << 1,
    PermittedDirectionLeft  = 1 << 2,
    PermittedDirectionRight = 1 << 3,
};

参考:http://blog.csdn.net/liu1347508335/article/details/51166911

你可能感兴趣的:(iOS-枚举的使用)