@objc(XMPLOurService)
public class OurService : NSObject {
public class func isSomething( param: String? ) -> Bool { ...In a mixed language iOS project this correctly populates the bridging header and can be called from objective C.
But I want to throw an error from this code so I change this to say:
@objc(XMPLOurService)
public class OurService : NSObject {
public class func isSomething( param: String? ) throws -> Bool { ...And now the function disappears from the bridging header and can't be called from objective C.
What am I doing wrong?