gpt4 book ai didi

ios - 无法将类型 '(Void) -> ()' 的值转换为预期的参数类型 '() -> Void'

转载 作者:行者123 更新时间:2023-12-01 16:11:58 24 4
gpt4 key购买 nike

我正在尝试实现 TradeIt ios SDK,但由于 sdk 中的问题而无法编译。

let promises = self.getAllDisplayableLinkedBrokers().map {
linkedBroker in
return Promise<Void> { seal in
linkedBroker.authenticateIfNeeded(
onSuccess: seal.fulfill,
onSecurityQuestion: onSecurityQuestion,
onFailure: { tradeItErrorResult in
onFailure(tradeItErrorResult, linkedBroker)
seal.fulfill(())
}
)
}
}

onSuccess: seal.fulfill, 在线有一个错误: Cannot convert value of type '(Void) -> ()' to expected argument type '() -> Void'
以下是 authenticateIfNeeded 的定义详细说明对 onSuccess 的期望的方法。
@objc public func authenticateIfNeeded(onSuccess: @escaping () -> Void, onSecurityQuestion: @escaping (TradeItSecurityQuestionResult,_ submitAnswer: @escaping (String) -> Void, _ onCancelSecurityQuestion: @escaping () -> Void) -> Void,
onFailure: @escaping (TradeItErrorResult) -> Void
) -> Void {
guard let error = self.error else {
onSuccess()
return
}

if error.requiresAuthentication() {
self.authenticate(
onSuccess: onSuccess,
onSecurityQuestion: onSecurityQuestion,
onFailure: onFailure
)
} else if error.requiresRelink() {
onFailure(error)
} else {
onSuccess()
}
}


我正在开发一个 react 原生应用程序,我需要为 TradeIt sdk 的 ios 创建一个 react 原生模块。这就是为什么我不熟悉objective-c并且在我面前有一条陡峭的学习曲线。任何帮助,将不胜感激。谢谢!

最佳答案

你可以试试这个:

    return Promise<Void> { seal in
linkedBroker.authenticateIfNeeded(
onSuccess: seal.fulfill(()),

关于ios - 无法将类型 '(Void) -> ()' 的值转换为预期的参数类型 '() -> Void',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62206834/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com