Quantcast
Channel: How can i save JSON objects to Core Data? - Stack Overflow
Browsing latest articles
Browse All 5 View Live

Answer by Rohan Pawar for How can i save JSON objects to Core Data?

This lib helps me lotFeaturesAttribute and relationship mapping to JSON key paths.Value transformation using named NSValueTransformer objects.Object graph preservation.Support for entity...

View Article


Answer by Matthieu Lucas for How can i save JSON objects to Core Data?

I suggest you to use this library : https://github.com/TouchCode/TouchJSONAnd then if you want to make a factory to parse json and feed your code data, you can use selectors to call methods to fill all...

View Article


Answer by coverback for How can i save JSON objects to Core Data?

The best way to do that would be to create entities corresponding to JSON structure. Easiest was is when each JSON object becomes an entity, and arrays become arrays of entities. Be reasonable,...

View Article

Answer by rooftop for How can i save JSON objects to Core Data?

Chances are your JSON data gets converted to an NSDictionary or NSArray (or some combination of the two). Simply extract the key/values from the JSON structure and add them to your entity class.

View Article

How can i save JSON objects to Core Data?

I'm a nwebie in Core Data, i have designed a navigation based application and some of the data i use are created on run time(come from a URL via JSON). I took a few tutorials an searched for almost a...

View Article

Browsing latest articles
Browse All 5 View Live