Create an enum from a raw using the failable initializer with rawValue
and get the raw value using the attribute rawValue
.
if let a = TestEnum(rawValue: "a") {
println(a.rawValue)
}
Read the changelog for more information.
Create an enum from a raw using the failable initializer with rawValue
and get the raw value using the attribute rawValue
.
if let a = TestEnum(rawValue: "a") {
println(a.rawValue)
}
Read the changelog for more information.