I\'m new in swift programming. I need to create pure swift framework and import it in my existing pure swift project. When I try to import swift framework, I\'m getting this
Additionally for @jvarela's answer, in Xcode 9 and swift 4,
To import Swift framework in an Objective C project, you must add
@objc
mark to all of your classes, methods and variables which you want to export into Objective C project .
For example,
@objc public class Foo: NSObject {
@objc public var fooDescription: String
@objc public func foo(){
}
}