ResultsController
public protocol ResultsController : AnyObjectA ResultsController manages data in a way that is usable by a collection view.
- FetchedResultsController
- RelationalResultsController
- 
                    
                    The delegate to notify about data changes DeclarationSwift var delegate: ResultsControllerDelegate? { get set }
- 
                    
                    The number of sections in the results controller DeclarationSwift var numberOfSections: Int { get }
- 
                    
                    Returns the number of objects in the specified section DeclarationSwift func numberOfObjects(in section: Int) -> IntParameterssectionThe section for which to count the objects Return ValueThe number of objects 
- 
                    
                    The name of the section at the specfied section Note The object represented by the section must adopt CustomDisplayStringConvertible, otherwise this returns an empty string DeclarationSwift func sectionName(forSectionAt indexPath: IndexPath) -> StringReturn ValueA string representing the name of the section 
- 
                    
                    Clear all storage for the controller and stop all observing DeclarationSwift func reset()
 
            