I am creating an application where I want a UITableView to allow the user to reorder the items very easily.
Right now i have put the tableview into editing mode and then on editingStyleForRowAtIndexPath I return UITableViewCellEditingStyleNone.
This gives me the behavior that I want, but not the user interaction. The reorder control is very small and i don't really have more than a couple of items, so scroll is not needed.
I basically would like to either make the Reorder control bigger(to make all the UITableViewCell launch the reorder behavior) or stop scroll and make any touch interaction start the reorder.
Will UITableView allow me to do anything like this or should I start looking at making my own controller?