CoreData

|

Lazy sorting

Yesterday I mentioned an issue I can across when sorting date records. Some of my date records could validly have a nil value in the date field (these are the “end” records for ongoing events). The problem was that Core Data was sorting these nil records to the wrong part of the list. When sorting…

Thoughts on sorting events
|

Thoughts on sorting events

Objective:  I need a way to sort events in a list view that makes them easy to find.  Constrains:  Options: I’d like to proceed with option three from the list above. Using this approach will place an event in the list twice if it has a start and end date. I can format the rows…