Instance Method インスタンスメソッド

defaultAppStorage(_:)

The default store used by AppStorage contained within the scene and its view content. シーンとそれのビュー内容内に含まれるAppStorageによって使われる省略時記憶装置(デフォルトストア)。

Declaration 宣言

func defaultAppStorage(_ store: UserDefaults) -> some Scene

Parameters パラメータ

store

The user defaults to use as the default store for AppStorage.

Discussion 議論

If unspecified, the default store for a view hierarchy is UserDefaults.standard, but can be set a to a custom one. For example, sharing defaults between an app and an extension can override the default store to one created with UserDefaults.init(suiteName:_).