The iOS framework that grows only as fast as its documentation
<NITableViewModelDelegate> Protocol Reference

Overview

A protocol for NITableViewModel to fetch rows to be displayed for the table view.

Examples:
ExampleStaticTableModel.m.
Inheritance diagram for <NITableViewModelDelegate>:
NICellFactory <NIMutableTableViewModelDelegate>

Tasks

(UITableViewCell *) - tableViewModel:cellForTableView:atIndexPath:withObject:
 

Method Documentation

tableViewModel:cellForTableView:atIndexPath:withObject:

Fetches a table view cell at a given index path with a given object.

- (UITableViewCell*)tableViewModel:(NITableViewModel *)tableViewModel cellForTableView:(UITableView *)tableView atIndexPath:(NSIndexPath *)indexPath withObject:(id)object;
Discussion

The implementation of this method will generally use object to customize the cell.

Reimplemented in NICellFactory.