TableViewDragger
A cells of UITableView can be rearranged by drag and drop.
- Zoom scale of cell in drag.
- Default is
1
.
- Alpha of cell in drag.
- Default is
1
.
- Opacity of cell shadow in drag.
- Default is
0.4
.
- Velocity of auto scroll in drag.
- Default is
1
.
TableViewDragger Function
UITableView
want to drag.
TableViewDraggerDataSource Function
- Return any cell if want to change the cell in drag.
- Return the indexPath if want to change the indexPath to start drag.
TableViewDraggerDelegate Function
- If allow movement of cell, please return
true
. require a call tomoveRowAtIndexPath:toIndexPath:
of UITableView and rearranged of data.
- If allow dragging of cell, prease return
true
.