override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 0
}
위의 소스에서 아래처럼 바꾸고 컴파일하면 오류가 뜨는데 어떻게 해결하면 되나요?
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return itemList.count
}