I wrote SearcherProtocol in Swift and need to implement an Objective-C class FileSearcher which has to use this protocol.
SearcherProtocol
FileSearcher
So I tried this:
Try adding #import "Product_Module_Name-Swift.h" to your Product_Module_Name-Prefix.pch file. That fixed it for me, plus you will now have access to your swift files from any objc file.
#import "Product_Module_Name-Swift.h"
Product_Module_Name-Prefix.pch