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

touchBarCustomizationLabel(_:)

Sets a user-visible string that identifies the view’s functionality. ビューのもつ機能性を識別するあるユーザ可視文字列を設定します。

Declaration 宣言

func touchBarCustomizationLabel(_ label: Text) -> some View

Return Value 戻り値

A Touch Bar element with a set customization label. ある設定カスタマイゼーションラベルをもつあるTouch Bar要素。

Parameters パラメータ

label

A Text view containing the customization label. そのカスタマイゼーションラベルを含んでいるTextビュー。

Discussion 議論

This string is visible during user customization. この文字列は、ユーザカスタマイゼーションの間に見られます。


TextField("TouchBar Demo", text: $placeholder)
    .frame(maxWidth: .infinity, maxHeight: .infinity)
    .focusable()
    .touchBar {
        Button("♥️", action: selectHearts)
            .touchBarCustomizationLabel(Text("Hearts"))
        Button("♣️", action: selectClubs)
            .touchBarCustomizationLabel(Text("Clubs"))
        Button("♠️", action: selectSpades)
            .touchBarCustomizationLabel(Text("Spades"))
        Button("♦️", action: selectDiamonds)
            .touchBarCustomizationLabel(Text("Diamonds"))
    }

A Touch Bar customization view showing labels assigned to the Touch

See Also 参照

Touch Bar