Inherits from RKAbstractTableController : NSObject
Conforms to NSFetchedResultsControllerDelegate
Declared in RKFetchedResultsTableController.h
RKFetchedResultsTableController.m

Overview

Instances of RKFetchedResultsTableController provide an interface for driving a UITableView

Tasks

Other Methods

Other Methods

  • – sectionCount

    The number of sections in the model.

  • – rowCount

    The number of rows across all sections in the model.

  • – cellForObjectAtIndexPath:

    Returns the UITableViewCell created by applying the specified mapping operation to the object identified by indexPath.

  • – controllerDidChangeContent:
             TODO: Missing a call to a replacement for configureCell:atIndexPath: which updates
             the contents of a given cell with the information from a managed object
             at a given index path in the fetched results controller
    

Instance Methods

cellForObjectAtIndexPath:

Returns the UITableViewCell created by applying the specified mapping operation to the object identified by indexPath.

- (UITableViewCell *)cellForObjectAtIndexPath:(NSIndexPath *)indexPath

Parameters

indexPath

The indexPath in the tableView for which a cell is needed.

Declared In

RKAbstractTableController.h

controllerDidChangeContent:

         TODO: Missing a call to a replacement for configureCell:atIndexPath: which updates
         the contents of a given cell with the information from a managed object
         at a given index path in the fetched results controller
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller

Declared In

RKFetchedResultsTableController.m

indexPathForObject:

Return the index path of the object within the table

- (NSIndexPath *)indexPathForObject:(id)object

Declared In

RKAbstractTableController.h

rowCount

The number of rows across all sections in the model.

- (NSUInteger)rowCount

Declared In

RKAbstractTableController.h

sectionCount

The number of sections in the model.

- (NSUInteger)sectionCount

Declared In

RKAbstractTableController.h