这是我的枚举:
enum Object: Int{
case House1 = 0
case House2 = 1
var descriptor:String{
switch self{
case .House1: return "Cottage"
case .House2: return "House"
}
}
}
我想知道如果我提供描述符值,有没有办法让rawValue
返回?
例如,如果我的字符串是“Cottage”,我想知道Enum值 (它应该返回0)
我怎样才能做到这一点?
答案 0 :(得分:4)
您可以为枚举创建一个初始化器,它接受描述符并返回它的枚举值,然后只需调用enumValue.rawValue
。请参阅以下内容:
enum Object: Int{
case House1 = 0
case House2 = 1
var descriptor:String{
switch self{
case .House1: return "Cottage"
case .House2: return "House"
}
}
init(descriptor: String) {
switch descriptor {
case "Cottage": self = .House1
case "House": self = .House2
default: self = .House1 // Default this to whatever you want
}
}
}
现在执行let rawVal = Object(descriptor: "House").rawValue
答案 1 :(得分:1)
听起来您根据自己的需要错误地设计了对象。如果那是你想要做的事情,你为什么不把原始值变成字符串?
enum Object: String {
case House1 = "Cottage"
case House2 = "House"
}
现在你要求的只是工作,开箱即用。
如果还有其他原因导致您需要House1与0
和"Cottage"
对应,请告诉我们它是什么。但到目前为止,从你所说的,听起来你想要的根本就不是一个枚举。也许一个简单的阵列会更好:
["Cottage", "House"]
这为您提供0
和"Cottage"
之间的直接双向交换(即索引号)。
答案 2 :(得分:0)
{{1}}