Classes
The following classes are available globally.
-
See moreFilesStore
offers a convenient way to store a collection ofCodable
objects in the files system.Declaration
Swift
open class FilesStore<T> where T : Identifiable, T : Decodable, T : Encodable
-
See moreSingleFileStore
offers a convenient way to store a singleCodable
objects in the files system.Declaration
Swift
open class SingleFileStore<T> where T : Decodable, T : Encodable
-
SingleKeychainStore
offers a convenient way to store a singleCodable
object securely in the OS Keychain.Warning: Keep in mind that values stored in in the OS keychain is not removed when the app is deleted.
See moreDeclaration
Swift
open class SingleKeychainStore<T> where T : Decodable, T : Encodable
-
See moreSingleUserDefaultsStore
offers a convenient way to store a singleCodable
object inUserDefaults
.Declaration
Swift
open class SingleUserDefaultsStore<T> where T : Decodable, T : Encodable
-
See moreUserDefaultsStore
offers a convenient way to store a collection ofCodable
objects inUserDefaults
.Declaration
Swift
open class UserDefaultsStore<T> where T : Identifiable, T : Decodable, T : Encodable