Xcode – How to use imported Swift protocols and classes in Objective-C code?
I have a project that bridges Swift and Objective-C both ways, and: I have a @objc protocol defined in a Swift file: @objc protocol Plugin { @objc func onDevicePackageReceived(np: NetworkPackage) -> Bool } All the classes that implement this protocol…