The text to use as help.
Instance Method
インスタンスメソッド
help(_:)
Adds help text to a view using a 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<S>(_ text: S) -> some View
where S : StringProtocol
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.
Image(systemName: "pin.circle")
.foregroundColor(pointOfInterest.tintColor)
.help(pointOfInterest.name)