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

help(_:)

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

Declaration 宣言

func help<S>(_ text: S) -> some View where S : StringProtocol

Parameters パラメータ

text

The text 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.


Image(systemName: "pin.circle")
    .foregroundColor(pointOfInterest.tintColor)
    .help(pointOfInterest.name)