TableviewCell 快速出现问题

问题描述

enter image description here

我有 2 个部分,每个部分都有 3 行。基本上我希望第 0 行第 0 行只有图像和标签组合。所有其他行将只包含文本。它在页脚上有一个注销。我如何去消除重复性,我知道这是因为我使用的是 dequereuseable 单元,但我找不到解决方法

override func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    
    
        let cell = tableView.dequeueReusableCell(withIdentifier: "ImageCell",for: indexPath) as! ImageViewCell
        cell.textLabel?.font = UIFont(name: "Lato",size: 20.0)
        cell.contentView.layer.borderWidth = 0.05
        cell.layer.cornerRadius = 8
        cell.userFirstName.text = userFirstName
      
        return cell
}

解决方法

您可以准备 2 个具有 2 种不同布局和不同标识符的不同单元格。然后根据 indexPath.sectionindexPath.row 值将适当的出列。