最佳答案
我有以下枚举。
enum EstimateItemStatus: Printable {
case Pending
case OnHold
case Done
var description: String {
switch self {
case .Pending: return "Pending"
case .OnHold: return "On Hold"
case .Done: return "Done"
}
}
init?(id : Int) {
switch id {
case 1:
self = .Pending
case 2:
self = .OnHold
case 3:
self = .Done
default:
return nil
}
}
}
我需要以字符串数组的形式获取所有原始值(如 ["Pending", "On Hold", "Done"]
)。
我将这个方法添加到枚举中。
func toArray() -> [String] {
var n = 1
return Array(
GeneratorOf<EstimateItemStatus> {
return EstimateItemStatus(id: n++)!.description
}
)
}
但是我得到了下面的错误。
找不到类型‘ GeneratorOf’的初始化器,该类型接受类型为’(()-> _)’的参数列表
有没有更简单、更好或更优雅的方法来做到这一点?