次の列挙型があります。
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'の初期化子が見つかりません
これを行うためのより簡単、より良い、またはよりエレガントな方法はありますか?