7
Làm cách nào để tạo enum Decodable trong swift 4?
enum PostType: Decodable { init(from decoder: Decoder) throws { // What do i put here? } case Image enum CodingKeys: String, CodingKey { case image } } Tôi phải làm gì để hoàn thành điều này? Ngoài ra, giả sử tôi đã thay đổi caseđiều này: case image(value: Int) Làm …