zayar
zayar

Reputation: 431

Can I Share Sqlite Database Among iOS Apps?

I want to know how can i share sqlite database between two of my application. Can i have any brilliant ideas from you guys ?

Upvotes: 2

Views: 1210

Answers (2)

coneybeare
coneybeare

Reputation: 33101

If you wait until fall for [redacted], there might be some solutions for you. I would check the Apple developer forums for discussions that are not covered under the NDA

Upvotes: 0

AC2MO
AC2MO

Reputation: 1637

Sandboxing in iOS won't allow files to be shared between applications. Although you could get hacky and (potentially) make something sort-of work, your best bet would be to use a web service or other outside storage to pass data between applications.

Upvotes: 2

Related Questions