Ho la seguente enumerazione.
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
}
}
}
Ho bisogno di ottenere tutti i valori grezzi come un array di stringhe (in questo modo ["Pending", "On Hold", "Done"]
).
Ho aggiunto questo metodo al file enum.
func toArray() -> [String] {
var n = 1
return Array(
GeneratorOf<EstimateItemStatus> {
return EstimateItemStatus(id: n++)!.description
}
)
}
Ma ricevo il seguente errore.
Impossibile trovare un inizializzatore per il tipo "GeneratorOf" che accetti un elenco di argomenti di tipo "(() -> _)"
Esiste un modo più semplice, migliore o più elegante per farlo?