Inflearn Community Q&A
fail decoding data 뜨시는 분들
Written on
·
253
0
'the data couldn't be read because it is missing' 라는 오류가 뜨는데요
저만 그런지 모르겠지만 제가 고친 방법은
AnimalInfo.swift 의
struct AnimalInfo: Codable {
... }
을
struct AnimalInfor: Decodable{
...
}
로 바꾸면 됩니다.
iosswift
Quiz
64% of people got it wrong. Give it a try!
iOS 앱 개발의 MVC 패턴에서 Controller의 주된 역할은 무엇일까요?
앱이 사용하는 데이터를 저장하고 관리합니다.
화면에 UI 요소를 그리고 보여주는 역할을 합니다.
View와 Model 사이에서 데이터를 전달하고 사용자 액션을 처리합니다.
앱의 시작점을 결정하고 초기 설정을 담당합니다.
Answer
This question is waiting for answers
Be the first to answer!





