I have a grouped table retrieved using CoreData. The sections are based on a Boolean field in the SQLLite dB. How can I reverse the order of the groups in the table display? The default is to list the false values first (obviously, as false == 0, true == 1).
I guess I could change the database. My field name = isMandatory, so I could change it to isNotMandatory and fix my problem, but it would still be nice to know how to reverse the sort order of groups.