Add extra row to a UITableView managed by NSFetchedResultsController

。_饼干妹妹 提交于 2019-11-29 13:22:12

The fetched results controller is pretty tightly tied to the tableview, if you implement all the datasource methods as indicated in the documentation (the updates and so on). It will get pretty messy and hacky.

Could your "extra row" be the footer view of the table instead? This will always be at the bottom. It wouldn't be too much work to make it look like a cell, though from the look of it you want it to look different to the other cells anyway.

JosephH

Given the table only has one section, this code looks wrong:

- (NSUInteger)numberOfSectionsInTableView:(UITableView *)sender
{
    return [[self.fetchedResultsController sections] count] + 1;
}

I suspect your crash arises when the tableview tries to retrieve the second section; the + 1 should be removed.

It's possible to do more complex things with tables sourced from fetched results controllers (see NSFetchedResultsController prepend a row or section ), so I'm sure this simple case can be made to work.

Wirsing

Why dont you just use the built in Header and Footer Views of UITableView?

Example:

UIView *customBottomView = [UIView alloc] init... //set up your View (what you called custom bottom cell)

self.table.tableFooterView = customBottomView; //alternatively tableHeaderView

Technically you are adding a view that is displayed below (or above) the table that is added to the table and handled wonderfully by the TableView. For users there is no way determine whether this is a (last) cell or simply a view. You'll just have to work around if you were planning on using methods like didSelectRowAtIndexPath

You definitely don't want to hack the index paths, and headers won't do because cells have many advantages you won't want to lose.

So the Apple way to solve this to first make a super-entity. Then make another new entity for the row you want to add, and make it a sub-entity. Then make your existing row entity you were fetching also a sub-entity. Then change your fetch controller's fetch entity to this super-entity, so it will return both of the sub-entities in the results. In the super-entity add a sortOrder property, and set it to 1 on the row you want to appear first, and 2 on all the other rows, this is what makes the new row appear at the top.

This is how Apple implement the Folders list view in the iOS Notes app. The fetch controller's entity is NoteContainer, the 2 sub-entities are Account and Folder. The "All iCloud" row at the top is an Account and the rest are Folder.

NoteContainer (sortOrder)
- Account (1)
- Folder (2)

Note trash is also a folder but with its sort order 3 so it appears last.

The wider lesson here is to model your entities on how you wish them to appear in the UI using a fetch controller, rather than like how you would in a normalised relational database.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!