我正在尝试在表格视图中加载所有单元格,但我不能。我收到了一个错误。 您有解决此问题的任何解决方案吗?
这是我的代码:
func selectAllowCellInTableView(tableView:UITableView){
for j in 0..<tableView.numberOfSections{
for i in 0..<tableView.numberOfRows(inSection: j){
let indexPath = NSIndexPath(row: i, section: j)
let cell = tableView.cellForRow(at: indexPath as IndexPath) as! VideoTableViewCell
cell.imageViewCheck.isHidden = false
}
}
}