7
스위프트 4에서 열거 형 Decodable을 어떻게 만듭니 까?
enum PostType: Decodable { init(from decoder: Decoder) throws { // What do i put here? } case Image enum CodingKeys: String, CodingKey { case image } } 이것을 완료하기 위해 무엇을 넣어야합니까? 또한 내가 case이것을 다음과 같이 변경했다고 가정 해 봅시다 . case image(value: Int) 이것을 Decodable에 맞추려면 어떻게해야합니까? EDit …