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:
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.
- Tutorial: How To Use Core Data With iCloud Step-By-Step
- Library For Integrating Web Services Turning JSON Data Into Core Data Backed Native Objects
- Tutorial: In-Depth Guide To Handling And Transferring Files With iCloud From Within Your Apps
- Free Library For Easily Adding An iCloud Photo Gallery To Your Apps (With An Example App)
- Open Source Library Allowing You To Easily Map A REST API To Core Data Objects
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.