I am importing swift framework into objective-c project like this:
@import MyFramework;
The problem is that only some of the classes are recognized by the class i am importing the framework.
The class which is recognized:
public class RecognizedClass:UIViewController, WKNavigationDelegate, WKScriptMessageHandle
{ ... }
The class which is not:
public class VeediUtils
{ ... }
They are both public so why the first is recognized in the workspace and the other not?
Also i see in the header file MyFramework-Swift.h that a class
@interface RecognizedClass : UIViewController <WKNavigationDelegate, WKScriptMessageHandler>
Appear while the other dont
Why is that?
Also to point that this same procedure work when i am importing swift framework to swift project
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…