我有一个混合的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”放在func名称前面,但无济于事。
答案 0 :(得分:5)
Swift方法
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:")
答案 1 :(得分:0)
经过测试,确实像Martin R说的那样。
let mySelector: Selector = Selector("authentication:finishedWithAuth:error:")
当查看它的选择器时,swift函数的第一个参数通常是无名的。