Swift----枚举

OC中的枚举:

typedefNS_ENUM(NSInteger, UITableViewCellStyle) { 

 UITableViewCellStyleDefault,

 UITableViewCellStyleValue1,

 UITableViewCellStyleValue2,

 UITableViewCellStyleSubtitle

};

Swift中的枚举:

enumUITableViewCellStyle: Int {

case `default`

case value1

case value2

case subtitle

}

你可能感兴趣的:(Swift----枚举)