Return Value 戻り値
A view that contains the Touch Bar content. あるビュー、それはTouch Bar内容を含みます。
Availability 有効性
Technology
A view that contains the Touch Bar content. あるビュー、それはTouch Bar内容を含みます。
touchBar
A collection of views that the Touch Bar displays. ビューいくつかからなるあるコレクション、それはTouch Barが表示するものです。
Use touch
to provide a static set of views that are displayed by the Touch Bar when appropriate, depending on whether the view has focus.
touch
を使って、ビューいくつかからなるある静的集合を提供してください、それは適切な時に、ビューがフォーカスを持つかどうかに依存して、Touch Barによって表示されます。
The example below provides Touch Bar content in-line, that creates the content the Touch Bar displays: 下の例は、Touch Bar内容をインラインに提供します、それはTouch Barが表示する内容を作成します:
func selectHearts() {/* ... */ }
func selectClubs() { /* ... */ }
func selectSpades() { /* ... */ }
func selectDiamonds() { /* ... */ }
TextField("TouchBar Demo", text: $placeholder)
.frame(maxWidth: .infinity, maxHeight: .infinity)
.focusable()
.touchBar {
Button("♥️ - Hearts", action: selectHearts)
Button("♣️ - Clubs", action: selectClubs)
Button("♠️ - Spades", action: selectSpades)
Button("♦️ - Diamonds", action: selectDiamonds)
}