CustomAppData

struct CustomAppData

A controller for interacting with custom App Data.

  • Returns the value for the given key.

    Declaration

    Swift

    subscript(key: String) -> String? { get async throws }
  • Updates the value for the given key.

    Declaration

    Swift

    func update(key: String, value: String) async throws
  • Deletes the value for the given key.

    Declaration

    Swift

    func delete(_ key: String) async throws