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

Overview

The protocol for a cell created in the NICollectionViewCellFactory.

Cells that implement this protocol are given the object that implemented the NICollectionViewCellObject protocol and returned this cell's class name in collectionViewCellClass.

Tasks

(BOOL) - shouldUpdateCellWithObject:
 
(BOOL) + shouldAppendObjectClassToReuseIdentifier
 

Method Documentation

shouldUpdateCellWithObject:

Called both when a cell is created and when it is reused.

- (BOOL)shouldUpdateCellWithObject:(id)object;
Discussion

Implement this method to customize the cell's properties for display using the given object.

shouldAppendObjectClassToReuseIdentifier

Asks the receiver whether the mapped object class should be appended to the reuse identifier in order to create a unique cell.object identifier key.

+ (BOOL)shouldAppendObjectClassToReuseIdentifier;
Discussion

This is useful when you have a cell that is intended to be used by a variety of different objects.