| Framework | /System/Library/Frameworks/CoreData.framework |
| Availability | Available in iPhone OS 3.0 and later. |
| Companion guide | |
| Declared in | NSFetchedResultsController.h |
This protocol defines the interface for section objects vended by an instance of NSFetchedResultsController.
numberOfObjects required property
objects required property
name required property
indexTitle required property
For more about Objective-C properties, see “Properties” in The Objective-C Programming Language.
The index title of the section. (required)
@property (nonatomic, readonly) NSString *indexTitle
This is used when displaying the index.
NSFetchedResultsController.hThe name of the section. (required)
@property (nonatomic, readonly) NSString *name
NSFetchedResultsController.hThe number of objects (rows) in the section. (required)
@property (nonatomic, readonly) NSUInteger numberOfObjects
NSFetchedResultsController.hThe array of objects in the section. (required)
@property (nonatomic, readonly) NSArray *objects
NSFetchedResultsController.hLast updated: 2009-03-10