You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes you need to store something that is a bit larger, like a icon image. Storing this in UserDefaults would be slow as it has to be decoded each time it's accessed.
SwiftData has a .externalStorage option that makes it store it to a file on disk instead of in the database. Maybe we could do something similar.
Sometimes you need to store something that is a bit larger, like a icon image. Storing this in UserDefaults would be slow as it has to be decoded each time it's accessed.
SwiftData has a
.externalStorage
option that makes it store it to a file on disk instead of in the database. Maybe we could do something similar.This can only be supported if the
suite
option is not given as otherwise we don't know where to store it.The text was updated successfully, but these errors were encountered: