adding framework to Xcode 7

1.2k views Asked by At

I'm unable to find and add AVFoundation framework and other framework like Xcode6 we were able to do on Xcode 7 beta
is there any way to add AVFoundation to the project?

1

There are 1 answers

0
Nilesh Patel On

Apple added a new feature called module which is semantic to import. It's kind of a better implementation of the pre-compiled headers.

Modules are a packaging together of the framework executable and it's headers.

One of the big advantages of using @import is that you don't need to add the framework in the project settings, it's done automatically.

Add any framework like below,

enter image description here

Please let me know if you need anymore clarification on this.