Nimbus
0.9.3 - Nimbus is proudly hosted on Github
An iOS framework whose growth is bounded by O(documentation).
|
A light-weight implementation of the NICellObject protocol.
Use this object in cases where you can't set up a hard binding between an object and a cell, or when you simply don't want to.
For example, let's say that you want to show a cell that shows a loading indicator. Rather than create a new interface, LoadMoreObject, simply for the cell and binding it to the cell view, you can create an NICellObject and pass the class name of the cell.
[tableContents addObject:[NICellObject objectWithCellClass:[LoadMoreCell class]]];
Definition at line 159 of file NICellFactory.h.
Methods | |
id | userInfo property |
(Class) | - cellClass |
(UITableViewCellStyle) | - cellStyle |
- NICellObject: [read, retain] |
An object that can be used to populate information in the cell.
Definition at line 168 of file NICellFactory.h.
- (Class) cellClass | [required, inherited] |
The class of cell to be created when this object is passed to the cell factory.
- (UITableViewCellStyle) cellStyle | [optional, inherited] |
The style of UITableViewCell to be used when initializing the cell for the first time.