I’m having a bit of difficulty grouping my table view by past and upcoming. This would be determined by a date field in my Core Data model. So all items with a date > today would be upcoming, and all with a date < today would be considered past. Any insight into this would be greatly appreciated.
Share
You can use this function in your entities class:
}
It will return
Then just pass the “dateToStringForSectionTitels” to your fetch result controller.
Good luck.