2
Objective-C的方法夫特橋接方法調用錯誤
typedef void(^CompletionHandler)(NSError *error);
- (void)openWithCompletionHandler:(CompletionHandler)completionHandler authType:(AuthType)authType, ...;
我試圖對象C代碼轉換成SWIFT代碼。
我想:
test().openWithCompletionHandler({ (NSError) -> Void in
}, AuthType.Test)
但這是代碼編譯錯誤 「呼叫額外的參數」。
我該怎麼辦?