I have a List of objects, which I need to sort by a date
property. I'm using that list to display the items in a UITableView
My problem is that, sorting a List in Realm returns a Results<myItem>
instead of a List<myItem>
object.
What is the proper way to sort a List in Realm without converting it into a Results object?