gpt4 book ai didi

swift - 如何创建一个闭包来返回哪个参数为 true?

转载 作者:行者123 更新时间:2023-11-30 10:02:25 25 4
gpt4 key购买 nike

如果是可选或强制更新,我需要创建某种关闭来返回。我创建了一些伪代码:

func verifyAppVersionWithServer(isForceUpdate: bool -> true, isOptionalUpdate: bool -> true) {
//Some check will be performed here then:
if isForceUpdate {
return isForceUpdate -> true
} else {
return isOptionalUpdate -> true
}
}

我不确定如何在 Swift 中创建一个闭包,然后返回哪个参数为 true。

最佳答案

返回一个指示所需更新类型的枚举可能会更好。

然后你会得到这样的东西:

enum UpdateType {
case None
case Optional
case Required
}

func verifyAppVersionWithServer(completion:(UpdateType) -> Void) {

let anyUpdate = true
let forcedUpdate = false

if anyUpdate {
if forcedUpdate {
completion(.Required)
} else {
completion(.Optional)
}
} else {
completion(.None)
}
}

您可以将其称为:

verifyAppVersionWithServer { (updateType) in
print("Update type is \(updateType)")
}

显然,这些值将由您的服务器响应决定,而不是我所示的固定值。

关于swift - 如何创建一个闭包来返回哪个参数为 true?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37715621/

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