gpt4 book ai didi

ios - 如何找出两个自定义单元格中的哪一个被选中?

转载 作者:行者123 更新时间:2023-11-30 11:47:45 24 4
gpt4 key购买 nike

我的表格 View 中有两种类型的自定义单元格,我想找出当用户点击特定行时选择哪种类型的单元格。 UITableView的didSelect委托(delegate)中应该写什么?

最佳答案

如果有两个自定义单元格,那么必须有两个 UITableViewCell 类,您可以简单地根据该类来区分单元格。请参阅下面的代码:

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) as? MyCustomCell1 {
//Perform action here
} else if let cell = tableView.cellForRow(at: indexPath) as? MyCustomCell2 {
//Perform action here
}
}

关于ios - 如何找出两个自定义单元格中的哪一个被选中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48637383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com