美文网首页
iOS-枚举的使用

iOS-枚举的使用

作者: 博尔茨杰 | 来源:发表于2016-07-11 11:05 被阅读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

    相关文章

      网友评论

          本文标题:iOS-枚举的使用

          本文链接:https://www.haomeiwen.com/subject/obxjjttx.html