부스트코스 JSON 다루기를 따라서 부지런히 해보고 있는데
아직 안된다 ... 😣
왜 안되는지도 모르겠다 ^.ㅠ
그냥 막 따라쳤다 흙...
방법을 찾아보쟈...⭐️
현 상태: json 데이타 당연히? 제대로 안 불러와지고 희멀건 테이블뷰만 보임...ㅎ
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
let jsonDecoder: JSONDecoder = JSONDecoder()
guard let dataAsset: NSDataAsset = NSDataAsset(name: "exposition") else {
return
}
do {
self.exposition = try jsonDecoder.decode([ExpoItem].self, from: dataAsset.data)
} catch {
print(error.localizedDescription)
}
self.tableView.reloadData()
}
}
cell.textLabel?.text = expoItem.expoTitle
cell.detailTextLabel?.text = expoItem.description
textLabel이랑 detailTextLabel 잘 모르겠음.
인강을 제대로 안 본건지 이해를 못한건지??
모르겠음
일단 저 2개만 불러들이게 해보고 싶었는데 안됨 🤔