Instance Method インスタンスメソッド

help(_:)

Adds help text to a view using a text view that you provide. ヘルプテキストをビューへと加えます、あなたが提供するテキストビューを使います。

Declaration 宣言

func help(_ text: Text) -> some View

Parameters パラメータ

text

The Text view to use as help.

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)"))