Return Value 戻り値
A Touch Bar view with one element centered in the Touch Bar row. Touch Bar横列において中心にくるある要素をもつTouch Barビュー。
Availability 有効性
Technology
A Touch Bar view with one element centered in the Touch Bar row. Touch Bar横列において中心にくるある要素をもつTouch Barビュー。
principal
A Boolean value that indicates whether to display this view prominently in the Touch Bar compared to other views. あるブール値、それはこのビューをTouch Barにおいて他のビューと比較して目立つように表示するかどうかを指し示します。
Use touch
to designate a view as a significant view in the Touch Bar. Currently, that view will be placed in the center of the row.
touch
を使って、あるビューをTauch Barにおいて重要なビューとして指定してください。現在、そのビューは横列の中心に置かれます。
The example below sets the last button as the principal button for the Touch Bar view. 下の例は、最後のボタンを主役ボタンとしてTouch Barビューに対して設定します。
let touchBarItems = TouchBar(id: "myBarItems") {
Button("♣️", action: {})
Button("♥️", action: {})
Button("♠️", action: {})
Button("♦️", action: {})
.touchBarItemPrincipal(true)
}
TextField("TouchBar Demo", text: $placeholder)
.frame(maxWidth: .infinity, maxHeight: .infinity)
.focusable()
.touchBar(touchBarItems)
Note 注意
Multiple visible bars may each specify a principal view, but the system only honors one of them. 複数の可視のバーは、それぞれに主役ビューを指定するかもしれません、しかしシステムはそれらの1つに栄誉を与えるだけです。