MNY
MNY

Reputation: 1536

Connect iOS app to Core Data

I'm a beginner on iOS development, and I want to explose some sample app's development.

My question is if it's a good practice to build something, and figure out how to save data after building some project, or it have to be part of the development process?

Upvotes: 1

Views: 40

Answers (1)

tkanzakic
tkanzakic

Reputation: 5499

This depend on your project, is the data a fundamental part of your application or it is just a plus?, if it is a plus you can implement it later on, but in general, I think you should think about it from the beginning of the development process.

If you plan to use Core Data as the persistent storage it is easiest to add it from the begging, but here you can find how to add it in a later stage of your development process.

Upvotes: 1

Related Questions