Skip to content

Instantly share code, notes, and snippets.

@igroomgrim
Created November 10, 2015 03:59
Show Gist options
  • Save igroomgrim/a6a9ba0bf4f0805b3d51 to your computer and use it in GitHub Desktop.
Save igroomgrim/a6a9ba0bf4f0805b3d51 to your computer and use it in GitHub Desktop.
Filtering realm object with NSPredicate.
let predicate = NSPredicate(format: "done == %@", NSNumber(bool: true))
let tasks = realm.objects(TDTask).filter(predicate)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment