0

Possible Duplicate:
How to share custom data between iPhone applications?

Aside from using URL scheme, what other means are there for two iPhone apps to pass data between each other (ideally, without launching another app -- which is one of the downsides using URL scheme)

Community
  • 1
  • 1
Boon
  • 40,656
  • 60
  • 209
  • 315
  • See thread: http://stackoverflow.com/questions/220630/how-to-share-custom-data-between-iphone-applications –  Jan 18 '10 at 01:16

1 Answers1

1

Unfortunately apps are sandboxed, and can't communicate with each other. You would have to implement something server-side to act as a central location for this data.

Dan Lorenc
  • 5,376
  • 1
  • 23
  • 34