I have defined two Swift classes in my Xcode project. Everything else is Objective-C.
To use classes in Objective-C, I am trying to import ProductModuleName-Swift.h , but the file contains only a definition for one of the Swift classes. ( SearchViewController )
This class is exported:
class SearchViewController : UIViewController {
but this is not so:
public class Socket {
source share