IOS apps share the framework?

If several applications are installed on the same device using the same infrastructure, is it several copies of the framework code stored on the device, or all applications use them?

+5
source share
2 answers

If this is a system infrastructure, then each application uses a common system copy of the framework. If this is the environment that you downloaded and added to your project, your application uses this private copy. (The same is true for OS X applications and frameworks).

(Note that non-systemic iOS frameworks must be static, so in any case they will not be shared between applications. But this answer will be preserved even if dynamic library frameworks were created, as is the case with OS X).

+10
source

The system framework is "divided", I think you could say. Moreover, applications are associated with the frameworks in the system.

+1
source

All Articles