Skip to content

Instantly share code, notes, and snippets.

@igroomgrim
Last active November 10, 2015 04:03
Show Gist options
  • Save igroomgrim/152b72762892e26fd47e to your computer and use it in GitHub Desktop.
Save igroomgrim/152b72762892e26fd47e to your computer and use it in GitHub Desktop.
Sorting realm object with sorted function.
let predicate = NSPredicate(format: "done == %@", NSNumber(bool: true))
let tasks = realm.objects(TDTask).filter(predicate).sorted("created",ascending:false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment