1

我有一个混合的 Swift 和 Objective C 应用程序。swift 应用程序使用一些 ObjectiveC 库来处理 OAuth2 身份验证。一旦对令牌的 OAuth2 请求完成,其中一部分是对委托方法的回调。

以下代码正在使用我传入的选择器的 Objective C 库 (GTMOAuth2) 中执行:

if (delegate_ && finishedSelector_) {
  SEL sel = finishedSelector_;
  NSMethodSignature *sig = [delegate_ methodSignatureForSelector:sel];
  NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:sig];
  [invocation setSelector:sel];
  [invocation setTarget:delegate_];
  [invocation setArgument:&self atIndex:2];
  [invocation setArgument:&auth atIndex:3];
  [invocation setArgument:&error atIndex:4];
  [invocation invoke];
}

我想调用的函数在我的 swift viewController 中,看起来像这样:

func authentication(viewController: GTMOAuth2ViewControllerTouch, finishedWithAuth: GTMOAuth2Authentication, error: NSError)
{
    if (error != nil)
    {
        var alertView: UIAlertView = UIAlertView(title: "Authorisation Failed", message: error.description, delegate: self, cancelButtonTitle: "Dismiss")

        alertView.show()

    }
    else
    {
        // Authentication Succeeded
        self.mytoken = finishedWithAuth.accessToken
    }
}

我目前传入的选择器是:

let mySelector: Selector = Selector("authentication:viewController:finishedWithAuth:error:")

并在此调用中用作参数:

let myViewController: GTMOAuth2ViewControllerTouch = GTMOAuth2ViewControllerTouch(authentication: auth, authorizationURL: authURL, keychainItemName: nil, delegate: self, finishedSelector: mySelector)

谁能告诉我为什么我的函数永远不会被调用?它似乎总是在创建 NSInvocation 的那一行失败。

我尝试了多个选择器字符串,但每个字符串似乎都失败了。我错过了什么吗?

我也尝试将“@objc”放在函数名称前面,但无济于事。

4

2 回答 2

5

斯威夫特方法

func authentication(viewController: GTMOAuth2ViewControllerTouch,
                  finishedWithAuth: GTMOAuth2Authentication,
                             error: NSError)

暴露于 Objective-C 为

-(void)authentication:(GTMOAuth2ViewControllerTouch *) viewController 
     finishedWithAuth:(GTMOAuth2Authentication *) finishedWithAuth
                error:(NSError *)error

这意味着选择器是

Selector("authentication:finishedWithAuth:error:")

通常,第一个参数名称不是选择器的一部分。唯一的例外是init方法,其中第一个参数名称合并到 Objective-C 方法名称中。例如,Swift 初始化程序

init(foo: Int, bar: Int) 

转换为 Objective-C 为

- (instancetype)initWithFoo:(NSInteger)foo bar:(NSInteger)bar

选择器将是

Selector("initWithFoo:bar:")
于 2014-06-30T11:18:07.713 回答
0

测试了一下,果然如 Martin R 所说。

let mySelector: Selector = Selector("authentication:finishedWithAuth:error:")

swift 函数的第一个参数在查看它的选择器时通常是无名的。

于 2014-06-30T10:59:15.603 回答