Initializer

init(wrappedValue:)

Creates the state with an initial wrapped value. 状態をあるラップされた初期値で作成します。

Declaration 宣言

init(wrappedValue value: Value)

Parameters パラメータ

wrappedValue

An initial wrappedValue for a state. ある状態に対する初期wrappedValue。

Discussion 議論

Don’t call this initializer directly. Instead, declare a property with the State attribute, and provide an initial value:


@State private var isPlaying: Bool = false

See Also 参照

Creating a State 状態を作成する