我尝试在tableView
中移动行,所以我设置:
tableView.setEditing(true, animated: true)
但是拖拉机没有出现在右侧,只有红色负片会移除左侧的标志。
为什么?
我已经实施了canMoveRowAtIndexPath
方法:
override func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {
return true
}
答案 0 :(得分:0)
有两件丢失的东西
1)需要showsReorderControl
2)甚至在拖动事件之前需要定义/实现moveRowAtIndexPath
。