Adding a framework to existing project

132 Views Asked by At

I'm adding a 'Cocoa Touch Framework' target to an existing project on XCode 6. Will I be able to use the built framework on older iOS versions? (iOS 6 & 7)

1

There are 1 best solutions below

1
On

As far as I know you can work around and support iOS7 with dynamic libraries.

The application must weak link against the framework. To do so, in your application target’s “Link Binary With Libraries” Build Phase, designate the framework as “Optional”. This will weakly link against the framework.

enter image description here

Then, you need to follow the guidelines provided by apple.

You can have more information and a sample project in this blog article.