gpt4 book ai didi

ios - 如何将 indexPath(不是 indexPath.row)传递到我的 UITableViewCell 的 IBAction

转载 作者:行者123 更新时间:2023-11-28 10:23:48 25 4
gpt4 key购买 nike

我正在开发一个待办事项应用程序。在我的应用程序中,我按下复选框按钮来删除一行。我编写这段代码是为了将 indexPath.row 传递到我的复选框按钮中:

cell.checkbox.tag = indexPath.row
cell.checkbox.addTarget(self, action: "checkAction:", forControlEvents: .TouchUpInside)

第一个代码允许我访问 indexPath.row,第二个代码允许我在按下按钮时创建一个函数。这是我在按下按钮时使用的功能:

@IBAction func checkAction(sender: UIButton) {
taskMgr.removeTask(sender.tag)
tblTasks.reloadData()
}

现在,我想在删除时添加动画,这样看起来就不会那么突然了。我将使用的代码是这样的:

tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)

但是,我只能在我的 checkAction 函数中访问 indexPath.row。如何访问 indexPath(不牺牲 indexPath.row)?

最佳答案

如果您在重新加载整个表格之前移动行或添加或删除行,标记可能会给您带来错误的行。因此,您可以在按钮方法中使用 indexPathForRowAtPoint: 来获取 indexPath,而不是使用标签。

@IBAction func checkAction(sender: UIButton) {

let point = sender.convertPoint(CGPointZero, toView: self.tableView)
let indexPath = self.tableView.indexPathForRowAtPoint(point)
taskMgr.removeTask(indexPath.row)
tblTasks.reloadData()
}

关于ios - 如何将 indexPath(不是 indexPath.row)传递到我的 UITableViewCell 的 IBAction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30431342/

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