CleanJSON
CleanJSON copied to clipboard
Update CleanJSONDecoder.swift
支持含有未定义枚举的数组。 例如: enum Status: String { case a = "a" case b = "b" case c = "c" }
如果 person 结构体有一个此结构体的数组status:[Status] 兼容status = ["a", "b", "d"]的情况,其中“d”并未在enum里面未定义。