
Why we need framework:
Fast iterative compilation times (up to 3x faster).
Easy distribution and packaging.
No modifications to Xcode.
Simple set-up for third-parties.
Support for building the framework as a dependent target (i.e. modifying source in the framework and building an app will automatically rebuild the framework and relink as expected).
Works with the latest version of Xcode.
Constraint to support .framework:
There are a few constraints that we want to satisfy when building a .framework:
Fast iterative builds when developing the framework. We may...
Read More