recents_category_drag_drop

the drag and drop is implemented : the cell can be move in the recents sections.
This commit is contained in:
yannick
2015-12-11 11:50:13 +01:00
parent 5e8e81d019
commit 27a72ae7db
3 changed files with 136 additions and 6 deletions
+11
View File
@@ -36,4 +36,15 @@
*/
- (CGFloat)heightForHeaderInSection:(NSInteger)section;
/**
Return true of the cell can be moved from a section to another one.
*/
- (BOOL)isDraggableCellAt:(NSIndexPath*)path;
/**
Move a cell from a path to another one.
It is based on room Tag.
*/
- (void)moveCellFrom:(NSIndexPath*)oldPath to:(NSIndexPath*)newPath;
@end