我正在尝试使用 AppStorage 属性包装器将字符串数组存储在用户默认值中,如下所示:
@AppStorage("History") var history: [String] = ["End of history"]
但是我得到了错误No exact matches in call to initializer
这是 AppStorage 的限制,因为如果我没记错的话,UserDefaults 可以存储数组吗?我可以使用什么解决方法?
我正在尝试使用 AppStorage 属性包装器将字符串数组存储在用户默认值中,如下所示:
@AppStorage("History") var history: [String] = ["End of history"]
但是我得到了错误No exact matches in call to initializer
这是 AppStorage 的限制,因为如果我没记错的话,UserDefaults 可以存储数组吗?我可以使用什么解决方法?