James
James

Reputation: 93

iOS app - data across devices

I'm new to iOS app development, and am planning developing an app that will require devices to use data across multiple devices and stored centrally.

Typically I would use a database such as MySQL (this is where i store the data currently) but understand there isn't native support for this in iOS development (is that correct)

What is the best way for me to store that data centrally and make it accessible by multiple ios devices.

James

Upvotes: 0

Views: 86

Answers (1)

Stephen Johnson
Stephen Johnson

Reputation: 5121

There are a lot of different approaches to this and it will depending on the kind of data and what kinds of devices you want to target. I would suggest using CoreData for your local data and using Parse.com for your backend. Your app would push/pull data to Parse to sync the data.

Upvotes: 1

Related Questions