如何以快速语言选择表格视图中的所有单元格

时间:2017-01-26 11:27:45

标签: uitableview swift3 tableviewcell

我正在尝试在表格视图中加载所有单元格,但我不能。我收到了一个错误。 您有解决此问题的任何解决方案吗?

这是我的代码:

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
            }
        }
    }

0 个答案:

没有答案