摘要: 如: typedef NS_ENUM(NSInteger, Test) { // 十进制 二进制 TestA = 1 << 0, // 1 00001 TestB = 1 << 1, // 2 00010 TestC = 1 << 2, // 4 00100 TestD = 1 << 3, // 8 阅读全文
posted @ 2017-05-09 14:48 浪人残风 阅读(294) 评论(0) 推荐(0) 编辑