gpt4 book ai didi

ios - 单击 UITableView 中的标签时,tableview 单元格中的 IndexPath 返回错误

转载 作者:行者123 更新时间:2023-11-28 06:22:51 26 4
gpt4 key购买 nike

我在表格 View 单元格中有一个标签。

在检索到正确的 indexPath 后,单击标签我想转到另一个 View Controller 。

我在标签中添加了一个gestureRecognizer。单击标签时,它会返回错误的 indexPath ,它不会返回标签所在单元格的索引路径。

我该如何解决这个问题。任何帮助将不胜感激。谢谢

以下是我的代码

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
cell = tableView.dequeueReusableCell(withIdentifier: "ViewControllerCell", for: indexPath) as! TableCell

cell.name.text = feeds[indexPath.row].name

nameClicked()
return cell
}


func nameClicked(){
cell.name.isUserInteractionEnabled = true
let gestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(TrendViewController.handleTap(gestureRecognizer:)))
cell.name.addGestureRecognizer(gestureRecognizer)

}


func handleTap(gestureRecognizer: UIGestureRecognizer) {

var touchPoint = cell.name.convert(CGPoint.zero, to: self.tableView)
var clickedLabelIndexPath = tableView.indexPathForRow(at: touchPoint)!

nameFromView = feeds[clickedLabelIndexPath.row].name
print("IndexPath at touch",clickedLabelIndexPath)

let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "profile") as! ProfileViewController

vc.clickedLabelIndexPath = clickedLabelIndexPath
vc.nameFromView = feeds[clickedLabelIndexPath.row].name

self.navigationController?.pushViewController(vc, animated: true)
}

最佳答案

您已将 cell 声明为类中的实例属性,因此您正在向同一单元格的标签添加手势。因此,使用 dequeueReusableCell 创建新单元格,并通过添加单元格类型的参数更改方法 nameClicked

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
//create new cell
let cell = tableView.dequeueReusableCell(withIdentifier: "ViewControllerCell", for: indexPath) as! TableCell
cell.name.text = feeds[indexPath.row].name
nameClicked(cell)
return cell
}

func nameClicked(_ cell: TableCell){
cell.name.isUserInteractionEnabled = true
let gestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(TrendViewController.handleTap(gestureRecognizer:)))
cell.name.addGestureRecognizer(gestureRecognizer)
}

现在像这样更改您的 handleTap 方法以获得正确的 indexPath

func handleTap(_ gestureRecognizer: UIGestureRecognizer) {
let point = self.tableView.convert(CGPoint.zero, from: gestureRecognizer.view!)
if let indexPath = self. tableView.indexPathForRow(at: point) {
print("\(indexPath.section) \(indexPath.row)")
//Add your code here
}
}

注意:如果您的单元格只有一个单元格,那么如果您使用 didSelectRowAt 方法而不是向标签添加手势,则效果更好。

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print(indexPath.row)
}

关于ios - 单击 UITableView 中的标签时,tableview 单元格中的 IndexPath 返回错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42831157/

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