Augustyniak / RATreeView

Library providing easy-to-use interface for displaying tree structures on iOS and tvOS.
MIT License
2.49k stars 465 forks source link

Moving items fix #202

Open gsabanti opened 7 years ago

gsabanti commented 7 years ago

Hi there. I have an issue with moving items. The solution is replacing this: [self.mutablechildControllers insertObject:controller atIndex:index]; with this: [self.mutablechildControllers insertObject:controller atIndex:newIndex];

in RATreeNodeController.m at line 82.

Hope that helps