NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
An object for displaying two lines of text in a table view cell.
This object maps by default to a NITextCell and displays the title with a UITableViewCellStyleSubtitle cell. You can customize the cell class using the NICellObject methods.
Tasks | |
NSString * | subtitle property |
UITableViewCellStyle | cellStyle property |
(id) | - initWithTitle:subtitle: |
(id) | - initWithTitle:subtitle:image:cellClass:userInfo: |
(id) | + objectWithTitle:subtitle: |
NSString * | title property |
(id) | - initWithTitle:image: |
(id) | - initWithTitle: |
(id) | - initWithTitle:image:cellClass:userInfo: |
(id) | + objectWithTitle:image: |
(id) | + objectWithTitle: |
id | userInfo property |
(Class) | - cellClass |
(UITableViewCellStyle) | - cellStyle |
The text to be displayed in the subtitle portion of the cell.
The type of UITableViewCell to instantiate.
By default this is UITableViewCellStyleSubtitle.
Initializes the NICellObject with NITextCell as the cell class and the given title and subtitle text.
Initializes the NISubtitleCellObject with the given title, subtitle, image, cellClass, and userInfo.
This is the designated initializer. Use of this initializer allows for customization of the associated cell class for this object.
Convenience method for initWithTitle:subtitle:.
The text to be displayed in the cell.
Initializes the NITitleCellObject with NITextCell as the cell class and the given title text and image.
Initializes the NITitleCellObject with NITextCell as the cell class and the given title text.
Initializes the NITitleCellObject with the given title, image, cellClass, and userInfo.
This is the designated initializer. Use of this initializer allows for customization of the associated cell class for this object.
Convenience method for initWithTitle:image:.
Convenience method for initWithTitle:.
An object that can be used to populate information in the cell.
The class of cell to be created when this object is passed to the cell factory.
The style of UITableViewCell to be used when initializing the cell for the first time.