我经常重新加载tableView。
当tableView在滑动动作期间重新加载单元格时,滑动动作将立即中断,就像在滚动和拖动期间一样。
除了刷卡动作,我可以通过isDragging
和isDecelerating
来获得这些状态。
他们的任何“ isSwiping”功能都可以做同样的事情吗?
答案 0 :(得分:0)
var lastEditedCell:UITableViewCell? // property of the class
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]? {
let editingCell:UITableViewCell = tableView.cellForRowAtIndexPath(indexPath)!
lastEditedCell = editingCell
//Your Code
}