简体   繁体   English

将objective-c 完成处理程序传递给swift

[英]Pass objective-c completion handler to swift

Using ios pushkit didReceiveIncomingPushWithPayload;使用ios pushkit didReceiveIncomingPushWithPayload; call and pass multiple parameters including withCompletionHandler.调用并传递多个参数,包括 withCompletionHandler。 What would the function call, interface, and swift arguments look like for withCompletionHandler? withCompletionHandler 的函数调用、接口和 swift 参数是什么样的?

AppDelegate.m AppDelegate.m

- (void)pushRegistry:(PKPushRegistry *)registry
  didReceiveIncomingPushWithPayload:(PKPushPayload *)payload
             forType:(PKPushType)type
  withCompletionHandler:(void (^)(void))completion{
  NSLog(@"VHC: AppDelegate - didReceiveIncomingPushWithPayload hit!");
  Voip* instance = [Voip new];
  [instance handleIncomingPush:payload forType:type withCompletionHandler:completion];
}

Voip.h语音文件

-(void)handleIncomingPush: (PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void (^)(void))completion;

Voip.swift网络电话

 @objc(handleIncomingPush: : :)
  func handleIncomingPush(_ payload: PKPushPayload, forType: PKPushType, withCompletionHandler: @escaping () -> Void) {
    withCompletionHandler()
}

Error错误

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Voip handleIncomingPush:forType:withCompletionHandler:]: unrecognized selector sent to instance 0x2806f4f30'

A couple of observations:几个观察:

  1. That @objc method name is not right. @objc方法名称不对。 Given that your Swift method signature matches what you're looking for in your Objective-C code, you can just remove the manual method name:鉴于您的 Swift 方法签名与您在 Objective-C 代码中寻找的内容相匹配,您只需删除手动方法名称:

     class Voip: NSObject { @objc func handleIncomingPush(_ payload: PKPushPayload, forType: PKPushType, withCompletionHandler: @escaping () -> Void) { withCompletionHandler() } }

    Or, personally, I'd use a Swiftier method signature and declare that ObjC interface if you want:或者,就个人而言,如果需要,我会使用 Swiftier 方法签名并声明 ObjC 接口:

     class Voip: NSObject { @objc(handleIncomingPush:forType:withCompletionHandler:) func handleIncomingPush(_ payload: PKPushPayload, type: PKPushType, completionHandler: @escaping () -> Void) { completionHandler() } }
  2. Remove the Voip.h header.删除Voip.h标头。 Always just used the “Objective-C Generated Interface Header File”.一直只使用“Objective-C 生成的接口头文件”。

  3. Instead of importing Voip.h in your Objective-C code, import the generated interface header.不要在 Objective-C 代码中导入Voip.h ,而是导入生成的接口标头。 Eg if your app is called MyApp , then it's likely just:例如,如果您的应用名为MyApp ,那么它可能只是:

     #import <MyApp-Swift.h>

    Look in your target settings for the “Objective-C Generated Interface Header File” setting if you're unclear what the name is.如果您不清楚名称是什么,请查看“Objective-C Generated Interface Header File”设置的目标设置。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM