Inflearn Community Q&A
Custom Cell 3강의에서 Thread 1: signal SIGABRT 오류
Written on
·
202
0
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 0
}
위의 소스에서 아래처럼 바꾸고 컴파일하면 오류가 뜨는데 어떻게 해결하면 되나요?
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return itemList.count
}
iosswift
Answer
This question is waiting for answers
Be the first to answer!





