作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个待办事项应用程序。在我的应用程序中,我按下复选框按钮来删除一行。我编写这段代码是为了将 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/
我是一名优秀的程序员,十分优秀!