NGridCellKey Class Reference Inherits from NSObject Conforms to NSCopying Declared in NGridCellKey.h Overview The NGridCellKey class represents cell key and defines position of the cell in the data source. The key includes type, row component and column component. type Key type. @property (readonly) NGridCellType type Declared In NGridCellKey.h rowKey Row component of the key. @property (readonly) NSInteger rowKey Declared In NGridCellKey.h columnKey Column component of the key. @property (readonly) NSInteger columnKey Declared In NGridCellKey.h + keyForCellWithType:rowKey:columnKey: Creates the cell key object. + (NGridCellKey *)keyForCellWithType:(NGridCellType)type rowKey:(NSInteger)rowKey columnKey:(NSInteger)columnKey Parameters type Type of the cell key. rowKey Row component of the cell key. columnKey Column component of the cell key. Declared In NGridCellKey.h