I have a footer in a grouped table that contains a UILabel
I'd want to update according to the data in its section. I've noted that by calling [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:NO];
calls not also viewForFooterInSection:
but cellForRowAtIndexPath:
as well. I don't want to reload the whole section, so I tried to call [self.tableView viewForFooterInSection:0]
, but it looks to be not possible get the footer that way.
How could I do this?
Thanks!