UITableView是iOS开发中常用的列表视图控件,用于展示大量数据。UITableViewCell是UITableView中的单元格,用于展示每一行的数据。
要从按钮获取UITableViewCell的IndexPath.row,可以通过以下步骤实现:
cellForRowAt
中,为每个UITableViewCell的按钮添加一个点击事件的监听器。superview
属性来获取其父视图,即UITableViewCell。indexPath(for:)
,传入UITableViewCell获取其对应的IndexPath。row
属性获取所需的行号。以下是一个示例代码:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CustomTableViewCell
cell.button.addTarget(self, action: #selector(buttonTapped(_:)), for: .touchUpInside)
return cell
}
@objc func buttonTapped(_ sender: UIButton) {
guard let cell = sender.superview as? UITableViewCell else {
return
}
guard let tableView = cell.superview as? UITableView else {
return
}
guard let indexPath = tableView.indexPath(for: cell) else {
return
}
let row = indexPath.row
// 使用获取到的row进行后续操作
}
在这个示例中,我们假设自定义的UITableViewCell类名为CustomTableViewCell,其中包含一个名为button的按钮。在cellForRowAt
方法中,为每个按钮添加了一个点击事件的监听器,当按钮被点击时,会调用buttonTapped
方法。
在buttonTapped
方法中,我们首先通过按钮的superview
属性获取到其父视图,即UITableViewCell。然后通过UITableViewCell的superview
属性获取到其所在的UITableView。最后,通过UITableView的indexPath(for:)
方法获取到UITableViewCell对应的IndexPath,进而获取到所需的行号。
这样,我们就可以从按钮获取到UITableViewCell的IndexPath.row了。
推荐的腾讯云相关产品:腾讯云移动开发套件(https://cloud.tencent.com/product/mks)
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云