gpt4 book ai didi

ios - 在 Swift 中检索 Branch 深层链接参数的问题

转载 作者:行者123 更新时间:2023-11-28 06:14:04 24 4
gpt4 key购买 nike

我在使用这条线时遇到了问题:

let isBranchLinkKey = "+clicked_branch_link"
guard let didClickBranchLink = params[isBranchLinkKey] as? Int else { return }

didClickBranchLink 为 nil,即使在调试器中有参数。

下面是我的调试器的截图:

.

second screenshot

最佳答案

如编辑后的屏幕截图中所述,paramBranchLink 是一个 boolean 值(注意左侧调试器中的 __NSCFBoolean),但您正在尝试在 guard 语句中转换为 Int。由于在 swift 中两者是两种不同的类型,因此 guard 语句将失败。您应该更改您的 guard 语句以将其作为 Bool 值获取。

guard let didClickBranchLink = params[isBranchLinkKey] as? Bool else { return }

这应该在 didClickBranchLink 中给出一个 boolean 值,您可以在后面的代码部分中使用它。

关于ios - 在 Swift 中检索 Branch 深层链接参数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45645852/

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