swift3枚举字符串不能赋值了?赋了不同的值还是没变?
enum Month: String{ case Jan = "1" case Feb = "2" case Mar = "3" case Apr = "4" } Month.Apr.rawValue "4"
可以啊