Return Value 戻り値
A Touch Bar element with a set customization label. ある設定カスタマイゼーションラベルをもつあるTouch Bar要素。
Availability 有効性
Technology
A Touch Bar element with a set customization label. ある設定カスタマイゼーションラベルをもつあるTouch Bar要素。
label
A Text
view containing the customization label.
そのカスタマイゼーションラベルを含んでいるText
ビュー。
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"))
}