Protocol: NSFetchedResultsSectionInfo
Overview
This protocol defines the interface for section objects vended by an instance of NSFetchedResultsController.The index title of the section. (required)The name of the section. (required)The number of objects (rows) in the section. (required)The array of objects in the section. (required)
Instance Attribute Summary (collapse)
-
- indexTitle
readonly
The index title of the section.
-
- name
readonly
The name of the section.
-
- numberOfObjects
readonly
The number of objects (rows) in the section.
-
- objects
readonly
The array of objects in the section.
Instance Attribute Details
- (String) indexTitle (readonly)
The index title of the section. (required) This is used when displaying the index.
- (String) name (readonly)
The name of the section. (required)
- (Integer) numberOfObjects (readonly)
The number of objects (rows) in the section. (required)
- (Array) objects (readonly)
The array of objects in the section. (required)