Instance Property
インスタンスプロパティ
wrappedValue
The underlying value referenced by the observed object.
監視されるオブジェクトによって参照される基礎をなす値。
Declaration
宣言
var wrappedValue: ObjectType
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 @ObservedObject
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 observable object that can create bindings to its properties using dynamic member lookup.
基礎をなす監視可能オブジェクトのあるラッパー、それはバインディングをそれのプロパティに対して動的メンバー検索を使って作成できます。