首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

oc定义枚举类型

2024-12-18 来源:化拓教育网

1.

typedefenum{

ENUM_ViewController_ActionTypeStart=0,//开始

ENUM_ViewController_ActionTypeStop,//停止

ENUM_ViewController_ActionTypePause//暂停

} ENUM_ViewController_ActionType;

2.

typedef NS_OPTIONS(NSUInteger, ActionType) {

ActionTypeUp    =1<<0,// 1

ActionTypeDown  =1<<1,// 2

ActionTypeRight =1<<2,// 4

ActionTypeLeft  =1<<3,// 8

};

推荐使用第二种

显示全文