gpt4 book ai didi

xcode - 展开可选值 NSDefautlts 时发现 nil 的 Swift 问题

转载 作者:行者123 更新时间:2023-11-28 09:38:20 25 4
gpt4 key购买 nike

fatal error 问题:在展开可选值时意外发现 nil。

let lastupdate = defaults.stringForKey("localdate")
self.lastUpdate.text = "Updated at " + last update! //issues when I use this line
self.lastUpdate.text = lastupdate // If use this line I have no issues.

如果我预先填充数据就可以工作。但我想允许一个零值。

最佳答案

stringForKey 返回一个可选值,因此您可以使用 nil 合并运算符“??”在 nil 的情况下返回一个空字符串 "":

let lastupdate = defaults.stringForKey("localdate") ?? ""

关于xcode - 展开可选值 NSDefautlts 时发现 nil 的 Swift 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29051588/

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