为什么dragger似乎没有在UITableView中移动行?

时间:2014-12-09 22:09:48

标签: ios uitableview swift

我尝试在tableView中移动行,所以我设置:

tableView.setEditing(true, animated: true)

但是拖拉机没有出现在右侧,只有红色负片会移除左侧的标志。

为什么?

我已经实施了canMoveRowAtIndexPath方法:

override func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {

    return true
}

enter image description here

1 个答案:

答案 0 :(得分:0)

有两件丢失的东西

1)需要showsReorderControl

2)甚至在拖动事件之前需要定义/实现moveRowAtIndexPath