I am trying to use STV to help with tableView creation/management, but also want to do some of the work manually. However, there don't appear to be actions for some of the tableView delegate methods in my particular use-case. My use-case is not to use SCArrayOfItemsSection and the items are not bound, as I want to do it manually.
For example, I can't find actions for:
tableView:canMoveRowAtIndexPath:
tableView:moveRowAtIndexPath:toIndexPath:
tableView:commitEditingStyle:forRowAtIndexPath:
I know for commitEditingStyle, I could use sectionActions.willDeleteItem, but that is only available when using SCArrayOfItemsSection, which I am not.
What should I do in this case ?