The footers must adhere. The trick is to add an extra cell to each section and render the footer. If you need more help, add a comment, but it should be pretty simple.
edits:
Q: Good. I am using Core Data and NSFetchedResultsController to populate a TableView. Would it be more difficult to do this?
A: Not at all. Override
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
To add an extra cell to each section and to
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
check if indexPath.row> than your fetchedResultsController strings for this section. If true, add footer information to your cell.
source share