当我的UITableView处于编辑模式并按下删除按钮( - )时,我隐藏行中的编辑按钮并显示删除和取消按钮。
如果按下取消按钮,我很好,因为它触发按钮的取消处理程序,然后我重新显示编辑按钮。
但是,如果用户在行内按下(不是“取消”或“删除”按钮),该行将从删除模式退出,而不允许我显示“编辑”按钮。
退出删除模式或在删除模式下按行时是否可以检测到某些事件?
func tableView(tableView: UITableView!, editActionsForRowAtIndexPath indexPath: NSIndexPath!) -> [AnyObject]!
{
// hide the Edit button in this row
self.editButtons[indexPath.row].hidden = true
// create a Cancel button to abort delete
var cancelAction = UITableViewRowAction(style: UITableViewRowActionStyle.Normal, title: "Cancel", handler:
{(
action: UITableViewRowAction!, indexPath: NSIndexPath!) in
// if Cancel pressed, show the Edit button again
self.editButtons[indexPath.row].hidden = false
// reload the row to get rid of the Delete and Cancel buttons
tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
return
})
var deleteAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default, title: "Delete",handler:
{(
action: UITableViewRowAction!, indexPath: NSIndexPath!) in
println("Delete not implemented")
return
})
return [deleteAction, cancelAction]
}
答案 0 :(得分:0)
您可以覆盖willTransitionToState
内的UITableViewCell
功能,以跟踪状态变化。
您必须跟踪previousState
,以检查您的删除按钮是否被隐藏。
class CustomCell : UITableViewCell
{
var previousState : UITableViewCellStateMask = UITableViewCellStateMask.allZeros
override func willTransitionToState(state: UITableViewCellStateMask) {
if state & UITableViewCellStateMask.ShowingEditControlMask != nil
{
if previousState & UITableViewCellStateMask.ShowingDeleteConfirmationMask != nil
{
println("hiding delete")
/* Send a notification or call a function by setting a
delegate from the view controller.*/
}
}
previousState = state
}
}