0

如果我在 Playground 中运行以下代码,它会正确打印出“here 1”但是,如果我使用类函数在我的应用程序中运行代码,它会打印出“here”。如何正确测试我是否保存了数组?

if let savedArray = UserDefaults.standard.object(forKey: "MyKey") {
    print("here")
}
else {
    print("here 1")
}
4

0 回答 0