How do I import a Swift class from a framework?
- I have Xcode Workspace
- I create a Cocoa touch framework with using Swift
- I create a Swift class named
TestClassin that Cocoa touch framework - I create a Tabbed Base iOS application
- I import my framework in that tabbed iOS application using
import FrameWorkTest
The application project compiler can't find TestClass.
How can I import TestClass for use in the main application?
It says that TestClass is not defined. I also want to add an extension in FrameWork an then use it.
https://github.com/ArtemKyslicyn/-SwiftImportFrameworkTest
I'm using this Tutorial http://www.swift-studies.com/blog/2014/6/30/creating-a-pure-swift-framework-for-both-ios-and-mac
I'm on Xcode version 6.0 seed
Thanks


