I use an NSFetchedResultsController to populate a UITableView, and would like to know if it is possible to create different sections based on an attribute of my data model.
I am displaying a table of objects, and one of the properties of the objects is a BOOL that is set to indicate whether or not the object is active. I would like to break the records apart in the UITableView and have section one display the objects with Active==YES and the second section display objects that are not active.
How is this done? Thank you!