I'm trying to order search results by the modified date. If I wanted to do by creationDate its:
query.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: false)]
What's the key for modified date? A list of all NSSortDescriptor keys or a way to find them would be extremely helpful.
Found it on accident after randomly trying 100 things. It's:
query.sortDescriptors = [NSSortDescriptor(key: "modificationDate", ascending: false)]
They key being "modificationDate" I could still use a list of these a info on how to find them. -Thanks
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With