iOS/iOS SeSAC 2기 TIL

iOS swift 과제중 알게된부분 realm관련

Developer-Michelle 2022. 8. 28. 14:04

ShoppingList 프로젝트 중에서 ...

 

1.

처음에 단순히 let dataList = UserShopList.shoppingThing 로 하려고 했으나,

이 때 잘못되었던 점은 이건 그냥 껍데기만 들고 온 것이었음. (shoppingThing, favorite, check 껍데기만)

 

근데 원래 내가 해야했던 건 realm 데이터베이스에서 해당 shoppingThing ex)음료수, 케익... 등 전체를 가져와서 이 중에서 검색해야하는 거였다.

 

따라서 단순히 껍데기가 아닌 realm 데이터베이스에서 찾는걸로 함

let dataList = repository.fetch()

    

        if dataList.count > 0 {

            for i in 0...(dataList.count - 1) {

                arr.append(dataList[i].shoppingThing)

            }

        }

 

 

 

2. tableview에 tableviewcell 등록하는 코드

 

 mainView.searchTableView.register(CustomTableViewCell.self, forCellReuseIdentifier: "CustomTableViewCell")