Convert xcode project to static library

Is there a way to convert an xcode project to a static library and use it in another project? I have a project that reads QRcode, it has its own static libraries, which I want to make the whole project as a single library.

+6
source share
1 answer

The tutorial explains how to create a static library step by step.

You can add a new target (static lib) to your project and customize the build phase.

-1
source

All Articles