Skip to content

Instantly share code, notes, and snippets.

@stuffmc
Created February 20, 2016 17:54
Show Gist options
  • Save stuffmc/db341326154faf4caa4f to your computer and use it in GitHub Desktop.
Save stuffmc/db341326154faf4caa4f to your computer and use it in GitHub Desktop.
let query = CKQuery(recordType: .Category)
query.sortDescriptors = [NSSortDescriptor(key: "name", ascending: true)]
CKContainer.defaultContainer().publicCloudDatabase.performQuery(query) { (records) -> Void in
completionHandler(records ?? [])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment