touchBarCustomizationLabel(_:)
Sets a user-visible string that identifies the view’s functionality.
Declaration
nonisolated func touchBarCustomizationLabel(_ label: Text) -> some View
Parameters
- label:
A
Textview containing the customization label.
Return Value
A Touch Bar element with a set customization label.
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"))
}[Image]