Return Value 戻り値
A view that controls whether users can interact with this view. あるビュー、それはユーザがこのビューと相互作用できるかどうかを制御したものです。
Availability 有効性
Technology
A view that controls whether users can interact with this view. あるビュー、それはユーザがこのビューと相互作用できるかどうかを制御したものです。
disabled
A Boolean value that determines whether users can interact with this view. あるブール値、それはユーザがこのビューと相互作用できるかどうかを決定します。
The higher views in a view hierarchy can override the value you set on this view. In the following example, the button isn’t interactive because the outer disabled(_:)
modifier overrides the inner one:
ビュー階層の中でより高いビューは、あなたがこのビュー上で設定した値をオーバーライドできます。以下の例において、ボタンは相互作用しません、なぜなら外側のdisabled(_:)
修飾子は内側のものをオーバーライドします:
HStack {
Button(Text("Press")) {}
.disabled(false)
}
.disabled(true)