Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

What are some of the options for implementing databases in iOS and their advantages/disadvantages?

I know we used parse.com in one of the teamtreehouse iOS courses, but I'd like to get a list of options and pros/cons.

John Wheal
John Wheal
27,969 Points

Are you asking for pros/cons of using Parse or databases in general?

I'm looking (not necessarily from one individual) for info like this: pros/cons for parse, pros/cons for CoreData, etc.

2 Answers

ok Fred here we go,

Pros for core data;

[this link]("http://nshipster.com/nscoding/") perfectly says it, it is amazingly useful and great to use but... it is a major pain in the ass to implement, archiving on the other hand is easy, doesn't offer as much but in some cases it works great. also looks at userDefaults because that will help out for simple data.

Cons for core data;

core data, as I said, sucks to implement but besides that it's actually pretty good once it's going,

Pros of a backend;

backends are a great plus for your app and its user, they're relatively easy to implement and definitely pay off. which ones are best? I'd say parse as apposed to cloud kit because parse if you want to expand to other platforms allows you to do that but cloud kit is only iOS.

Cons of a backend;

at times they can be hard to maintain but besides that they're smooth sailing, but, if your app grows you will need to pay to keep getting more space.

let me know if there are any other things you want to know.

happy hacking, Kai.

John Wheal
John Wheal
27,969 Points

I'm not sure if I'm missing something in your question but Parse and Core Data are fundamentally different (at the least the way Treehouse uses them).

It really depends on your intended use. Core Data is used when you need to store data in a database format on the local device. It can be difficult to setup and configure but once you've used it in a few projects it becomes easy.

On the other hand, Parse stores data remotely and would therefore not be right choice if your app has no need to share data with other users. That's why I'm a bit confused by your question.

It's not impossible to use both Parse and Core Data in the same app (I've had to do this in the past). Parse has recently introduced a new feature called "Parse Local Datastore" but I'm not aware Treehouse has covered this.

I don't think you're missing something in the question. I know Parse & Core Data have differences. The differences (& pros/cons) in some of these methods is what I'd like to know.