The Text view to use as help.
Instance Method
インスタンスメソッド
help(_:)
Adds help text to a view using a text view that you provide.
ヘルプテキストをビューへと加えます、あなたが提供するテキストビューを使います。
Availability 有効性
- iOS 14.0+
- iPadOS 14.0+
- macOS 11.0+
- Mac Catalyst 14.0+
- tvOS 14.0+
- watchOS 7.0+
Technology
- Swift
UI
Declaration 宣言
Parameters パラメータ
text
Discussion 議論
Adding help to a view configures the view’s accessibility hint and its tooltip (“help tag”) on macOS. ヘルプをあるビューに加えることは、ビューのもつアクセシビリティヒントおよびそれのツールチップ("ヘルプタグ")をmacOS上で構成設定します。 For more information on using help tags, see Help in the macOS Human Interface Guidelines.
Slider("Opacity", value: $selectedShape.opacity)
.help(Text("Adjust the opacity of the selected \(selectedShape.name)"))