asked
Yagom's iOS Programming
Working with an example - Passing data before screen transition
Written on
·
236
0
'the data couldn't be read because it is missing' 라는 오류가 뜨는데요
저만 그런지 모르겠지만 제가 고친 방법은
AnimalInfo.swift 의
struct AnimalInfo: Codable {
... }
을
struct AnimalInfor: Decodable{
...
}
로 바꾸면 됩니다.
Answer