The key for the localized text to use as help. ヘルプとして使用することになるローカライズされた文字列に対するキー。
Instance Method
インスタンスメソッド
help(_:)
Adds help text to a view using a localized string 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 宣言
func help(_ textKey: LocalizedStringKey
) -> some View
Parameters パラメータ
textKey
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")