我使用自定义单元格创建了一个tableview。
如您所见,我在单元格的右侧放置了检查符号。 我分配了自定义单元格类如下:
class CustomCell: UITableViewCell{
@IBOutlet weak var checkImage: UIIMageView!
}
在tableview类中,我的函数声明:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "customCell", for: indexPath) as! CustomCell
// Configure the cell...
cell.textLabel?.text = people[indexPath.row]
return cell
}
奇怪的是......当单击单元格时,复选标记出现。单击其他单元格时,复选标记消失,仅显示在所选单元格上。 我真的不知道这里发生了什么...... 我尝试了类似问题的答案,但没有一个有效。 任何帮助将不胜感激。谢谢