Does [tableViewModel removeSectionAtIndex:index] use animation when deleting? While I'm asking, does the insertSection method also use animation?
I'm current using
[tableViewModel.modeledTableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationNone];
but now would like the section along with the header removed and inserted.
If not, how can I achieve the desired effect?
Gary