JSONDecoder로 Decode할 때 에러
·
SwiftUI/에러해결
JSONDecoder로 데이터를 디코딩할 때 에러가 없지만 디코딩된 데이터가 비어있는 경우가 있을 수 있습니다  Decoding 할 데이터우선 다음과 같은 데이터 모델을 Decoding 하려고 시도하였습니다, 하지만 끊임없이 문제가 발생하였습니다.@Modelclass ExerciseRecordContainer: Identifiable, Decodable { enum CodingKeys: CodingKey { case startDate case endDate case totalTime case routineName } var startDate: Date = Date() var endDate: Date = Date() ..
ytw_developer
'json 디코딩 에러' 태그의 글 목록