iOS-枚举的使用

2016-07-11  本文已影响208人  博尔茨杰

在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

上一篇下一篇

猜你喜欢

热点阅读