Instance Property
インスタンスプロパティ
wrappedValue
The underlying value referenced by the environment object.
環境オブジェクトによって参照される基礎をなす値。
Declaration
宣言
var wrappedValue: ObjectType { get }
Discussion
議論
This property provides primary access to the value’s data. However, you don’t access wrappedValue
directly.
このプロパティは、値のもつデータに対する主要なアクセスを提供します。しかしながら、あなたはwrappedValue
に直接にアクセスしません。
Instead, you use the property variable created with the EnvironmentObject
attribute.
When a mutable value changes, the new value is immediately available. However, a view displaying the value is updated asynchronously and may not show the new value immediately.
ある可変の値が変化する時、新しい値はすぐに利用可能です。しかしながら、値を表示しているビューは非同期に更新されます、そして新しい値をすぐに示さないかもしれません。
See Also
参照
Getting the Value
値を取得する
struct Wrapper
A wrapper of the underlying environment object that can create bindings to its properties using dynamic member lookup.
基礎をなす環境オブジェクトのあるラッパー、それはバインディングをそれのプロパティに対して動的メンバー検索を使って作成できます。