Classes
The following classes are available globally.
-
See moreFilesStoreoffers a convenient way to store a collection ofCodableobjects in the files system.Declaration
Swift
open class FilesStore<T> where T : Identifiable, T : Decodable, T : Encodable
-
See moreSingleFileStoreoffers a convenient way to store a singleCodableobjects in the files system.Declaration
Swift
open class SingleFileStore<T> where T : Decodable, T : Encodable
-
SingleKeychainStoreoffers a convenient way to store a singleCodableobject 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 moreSingleUserDefaultsStoreoffers a convenient way to store a singleCodableobject inUserDefaults.Declaration
Swift
open class SingleUserDefaultsStore<T> where T : Decodable, T : Encodable
-
See moreUserDefaultsStoreoffers a convenient way to store a collection ofCodableobjects inUserDefaults.Declaration
Swift
open class UserDefaultsStore<T> where T : Identifiable, T : Decodable, T : Encodable
Classes Reference