UITableView-Reorder icon indicating copy to clipboard operation
UITableView-Reorder copied to clipboard

Easy iOS UITableView row reordering without table view edit mode using the long press gesture.

Results 8 UITableView-Reorder issues
Sort by recently updated
recently updated
newest added

I am using this category but it does not smooth when height's header view too big (table is group style).

if the last section is empty and you try to drop a element into the section you will get following error: 2015-11-03 12:11:57.737 UITableView+Reorder[2943:75589] **\* Terminating app due to uncaught...

if the last section is empty and you try to drop a element into the section you will get following error: ``` javascript 2015-11-03 12:11:57.737 UITableView+Reorder[2943:75589] *** Terminating app due...

any reason why still not at cocoapods actually?

On the demo project, add `self.tableView.rowHeight = UITableViewAutomaticDimension;` `self.tableView.estimatedRowHeight = 44.0;` in viewDidLoad of `FirstTableViewController` and run the project. Go to the tabBarItem `first` and then scroll to the bottom...

i used everything from your readme and when i use: ``` - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { indexPath = [tableView dataSourceIndexPathFromVisibleIndexPath: indexPath]; WorkoutExerciseListTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"WorkoutExerciseListCell" forIndexPath:indexPath]; if(...