I'm trying to build a iOS framework but at the moment I'm trying to import the framework I'm getting this error:
This is implementation of my framework:
public protocol myframeWorkDelegate{
func doSomething(value:Int)
}
public class myframeWork{
public var delegate:myframeWorkDelegate? = nil
public func doingSomething(do:String){
}
}
Any of you knows why I'm getting this error?
I'll really appreciate your help.