Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.
Instance Method
インスタンスメソッド
focusable(_:
focusable(_:onFocusChange:)
Specifies if the view is focusable and, if so, adds an action to perform when the view comes into focus.
ビューがフォーカス可能であるならば指定しますそして、もしそうならば、ビューがフォーカスに入る時に実行するアクションを加えます。
Deprecated 非推奨
Availability 有効性
- macOS 10.15–12.0 Deprecated
- tvOS 13.0–15.0 Deprecated
- watchOS 6.0–8.0 Deprecated
Technology
- Swift
UI
Declaration 宣言
Return Value 戻り値
A view that sets whether a view is focusable, and triggers on
when the view gains or loses focus.
あるビュー、それはビューがフォーカス可能であるかどうかを設定したものです、そしてon
をビューがフォーカスを得るか失う時は引き起こします。
Parameters パラメータ
isFocusable
A Boolean value that indicates whether this view is focusable. あるブール値、それはこのビューがフォーカス可能かどうかを指し示します。
onFocusChange
A closure that’s called whenever this view either gains or loses focus. The Boolean parameter to
on
isFocus Change true
when the view is in focus; otherwise, it’sfalse
. あるクロージャ、それはこのビューがフォーカスを得るまたは失うどちらかの時はいつでも呼び出されます。on
へのブールのパラメータは、ビューがフォーカスにある時はFocus Change true
です;そうでなければ、それはfalse
です。