実際、上記の回答は本当に素晴らしいですが、継続的に開発されているクライアント/サーバープロジェクトで多くの人々が必要とする詳細の一部が欠けています。バックエンドが時間の経過とともに継続的に進化する間にアプリを開発します。これは、一部の列挙型ケースがその進化を変えることを意味します。したがって、未知のケースを含む列挙型の配列をデコードできる列挙型デコード戦略が必要です。それ以外の場合、配列を含むオブジェクトのデコードは単に失敗します。
私がしたことは非常に簡単です:
enum Direction: String, Decodable {
case north, south, east, west
}
struct DirectionList {
let directions: [Direction]
}
extension DirectionList: Decodable {
public init(from decoder: Decoder) throws {
var container = try decoder.unkeyedContainer()
var directions: [Direction] = []
while !container.isAtEnd {
// Here we just decode the string from the JSON which always works as long as the array element is a string
let rawValue = try container.decode(String.self)
guard let direction = Direction(rawValue: rawValue) else {
// Unknown enum value found - ignore, print error to console or log error to analytics service so you'll always know that there are apps out which cannot decode enum cases!
continue
}
// Add all known enum cases to the list of directions
directions.append(direction)
}
self.directions = directions
}
}
おまけ:実装を隠す>コレクションにする
実装の詳細を隠すことは常に良い考えです。そのためには、もう少しコードが必要になります。秘訣は、内部配列に準拠DirectionsList
してプライベートにすることです。Collection
list
struct DirectionList {
typealias ArrayType = [Direction]
private let directions: ArrayType
}
extension DirectionList: Collection {
typealias Index = ArrayType.Index
typealias Element = ArrayType.Element
// The upper and lower bounds of the collection, used in iterations
var startIndex: Index { return directions.startIndex }
var endIndex: Index { return directions.endIndex }
// Required subscript, based on a dictionary index
subscript(index: Index) -> Element {
get { return directions[index] }
}
// Method that returns the next index when iterating
func index(after i: Index) -> Index {
return directions.index(after: i)
}
}
あなたはジョンSundellことで、このブログの記事にカスタムコレクションに準拠についてもっと読むことができます:https://medium.com/@johnsundell/creating-custom-collections-in-swift-a344e25d0bb0