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

help(_:)

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

Declaration 宣言

func help(_ textKey: LocalizedStringKey) -> some View

Parameters パラメータ

textKey

The key for the localized 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.


Button(action: composeMessage) {
    Image(systemName: "square.and.pencil")
}
.help("Compose a new message")