Open Source Helper Library For Easily Working With Core Data And iCloud

I’ve mentioned a number of helper libraries for working with Core Data such as the popular Magical Record.

Here’s an interesting helper library that makes working with Core Data and iCloud easier called Nimble from Marco Sero.

Nimble provides easy setters and finders, a main and background context for better performance, and more for both Core Data and iCloud. The iCloud features only work on iOS 7.

Here’s an example from the readme showing how easy it is to fetch, and change an object in the background:

[NimbleStore nb_saveInBackground:^(NBContextType contextType) {
  Book *book = [Book nb_findFirstInContext:contextType];
  book.name = @"updated name";
}];

You can find Nimble on Github here.

A very nice helper library for working with Core Data and iCloud.

FacebookTwitterDiggStumbleUponGoogle Plus

Original article: Open Source Helper Library For Easily Working With Core Data And iCloud

©2013 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.

Leave a Reply

Your email address will not be published. Required fields are marked *