I have 2 sections both with 3 rows. Basically I want the section 0, row 0 to only have the image and label combo. all the other rows will only be containing text. It has a logout on the footer. how do I go about removing the repetitiveness, I know it's because im using the dequereuseable cell but I can't find a work around.
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
}
question from:
https://stackoverflow.com/questions/65646781/issue-with-tableviewcell-in-swift 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…