Classes

The following classes are available globally.

  • FilesStore offers a convenient way to store a collection of Codable objects in the files system.

    See more

    Declaration

    Swift

    open class FilesStore<T> where T : Identifiable, T : Decodable, T : Encodable
  • SingleFileStore offers a convenient way to store a single Codable objects in the files system.

    See more

    Declaration

    Swift

    open class SingleFileStore<T> where T : Decodable, T : Encodable
  • SingleKeychainStore offers a convenient way to store a single Codable 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 more

    Declaration

    Swift

    open class SingleKeychainStore<T> where T : Decodable, T : Encodable
  • SingleUserDefaultsStore offers a convenient way to store a single Codable object in UserDefaults.

    See more

    Declaration

    Swift

    open class SingleUserDefaultsStore<T> where T : Decodable, T : Encodable
  • UserDefaultsStore offers a convenient way to store a collection of Codable objects in UserDefaults.

    See more

    Declaration

    Swift

    open class UserDefaultsStore<T> where T : Identifiable, T : Decodable, T : Encodable