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:
Import delegate as like this in .h file
@protocol AnalyticProtocol;
and add this in to .swift file
@objc public protocol AnalyticProtocol { }