Use Core Data or another API to interact with sqlite?

1

I was researching on how to save data on iPhone and iPads and came across many options, each with its complexity and purpose. Apple recommends that whatever app, which uses Core Data, is nothing more than a layer to interact with a SQLite database. I've also seen that there are options to work directly with SQLite without using Core Data, if using C-based functions, where you act directly on sqlite.

I'd like to know about your experience when using third-party APIs, third-party frameworks, or Core Data itself.

    
asked by anonymous 30.07.2014 / 22:01

1 answer

2

I particularly prefer Core Data, at first it may seem a bit strange, but it's not that complex to use.

If you have a version of your Android app I recommend that you use SQLite direct, so you can use the same database for both platforms.

The reading tip remains.

08.08.2014 / 03:07