Use accessibility
instead.
Instance Method
インスタンスメソッド
accessibility(value:)
Adds a textual description of the value that the view contains.
ビューのテキスト記述を加えます、それはビューが含みます。
Deprecated 非推奨
Availability 有効性
- iOS 13.0–15.4 Deprecated
- iPadOS 13.0–15.4 Deprecated
- macOS 10.15–12.3 Deprecated
- Mac Catalyst 13.0–15.4 Deprecated
- tvOS 13.0–15.4 Deprecated
- watchOS 6.0–8.5 Deprecated
Technology
- Swift
UI
Declaration 宣言
func accessibility(value: Text
) -> ModifiedContent
<Content, Modifier>
Available when
Modifier
is AccessibilityAttachmentModifier
.Discussion 議論
Use this method to describe the value represented by a view, but only if that’s different than the view’s label.
このメソッドを使って、あるビューによって表される値を記述してください、しかしそれがそのビューのもつラベルと異なる場合にのみ。
For example, for a slider that you label as “Volume” using accessibility(label:)
, you can provide the current volume setting, like “60%”, using accessibility(value:)
.