HPReorderTableView
HPReorderTableView copied to clipboard
Drop-in UITableView replacement to reorder cells with long press on any part of the cell
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1
To reproduce: - implement `tableView: targetIndexPathForMoveFromRowAtIndexPath: toProposedIndexPath:` in table view delegate - try to drag off the bottom of the table - crash The crash is in HPReorderTableView.m, `- (void)updateCurrentLocation:(UILongPressGestureRecognizer...
I'm not sure how to deal with this. I've determined that `tableView:titleForFooterInSection:` and `tableView:titleForHeaderInSection:` don't work on my data source, when I'm using HPReorderTableView. Am I doing something wrong?
- Add this code on Viewdidload and the try self.tableView.estimatedRowHeight = 10; self.tableView.rowHeight = UITableViewAutomaticDimension;
Attempt to fix issue #19... at least it works for me, I'm fine with it. 😄
Hi hpique, thanks a lot for this wonderful tableview. While playing around with the demo app, I found a pretty serious bug... I have made gif demonstrating the same. ...
In my project, I did not want all rows to be deletable. Perhaps you do not want this functionality, but I thought I'd make a pull request just to run...
I'm not sure if this is desired behavior for other users, but I didn't want to be able to drag rows that weren't allowed to move. Feel free to merge...
Hi hpique, thanks for this fantastic library, it works great and saved me a lot of time. I don't have any problem regards the functionality of the library, I'm able...
Moves the cell being re-ordered instead of the reverse in order to stop the cells being mixed up when dragging too fast. Prevents the placeholder cell being drawn on top...