when reordering cells, the destination view controller is still the original one.
Example: you have 2 lists. First is Home and second is Work. If you reorder Work to be first and Home to be second, when you tap on Work, it will load the Home items, because it kept the same indexPath.
Adding an order parameter in the List class should solve the problem.
when reordering cells, the destination view controller is still the original one.
Example: you have 2 lists. First is
Homeand second isWork. If you reorderWorkto be first andHometo be second, when you tap on Work, it will load the Home items, because it kept the same indexPath.Adding an order parameter in the List class should solve the problem.