I'm unable to find and add AVFoundation framework and other frameworks in Xcode 7 beta like we were able to do on Xcode 6.
How can I add AVFoundation to the project, in Xcode 7 (beta)?
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,