1

Hey All, I have an upcoming project that will require the same assets (images, video, audio) be used across multiple applications. Is is possible on iOS to share assets this way?

Thanks in advance

lxt
  • 31,146
  • 5
  • 78
  • 83
Alex
  • 1,074
  • 2
  • 9
  • 17

2 Answers2

2

I'm afraid not - each application lives in its own sandbox. It's part of the underlying iOS security system that apps can't share resources or assets. You'll have to bundle all your assets required into each individual app (unless you are prepared to host your assets in a single place online and have the app download them).

lxt
  • 31,146
  • 5
  • 78
  • 83
1

In general there are so many ways to share datas and strings between apps those are as follows.

  • UIDocumentInteractionController

  • UIActivityViewController

  • Shared Keychain Access

  • Custom URL Scheme

  • Web Service

  • iCloud API

Each feature has its own pros and cons

Go through this link to know more.

Community
  • 1
  • 1
Durai Amuthan.H
  • 31,670
  • 10
  • 160
  • 241