Objective-C 方法
typedef void(^CompletionHandler)(NSError *error);
- (void)openWithCompletionHandler:(CompletionHandler)completionHandler authType:(AuthType)authType, ...;
我试图将对象 c 代码转换为 swift 代码。
我试过了 :
test().openWithCompletionHandler({ (NSError) -> Void in
}, AuthType.Test)
但这是代码“调用中的额外参数”编译错误。
我应该怎么办?