类: TouchBarScrubber
创建一个scrubber (可滚动的选择程序)
Process: Main
new TouchBarScrubber(options)
实验功能
参数
对象items
ScrubberItem[] 一个数组,表示 scrubber 里的项目。select
Function (optional) - Called when the user taps an item that was not the last tapped item.selectedIndex
Integer - 用户选中项排序。
highlight
Function (optional) - Called when the user taps any item.- highlightedIndex Integer - 用户选中项排序.
selectedStyle
String (optional) - Selected item style. Can bebackground
,outline
ornone
. Defaults tonone
.overlayStyle
String (optional) - Selected overlay item style. Can bebackground
,outline
ornone
. Defaults tonone
.showArrowButtons
Boolean (optional) - Defaults tofalse
.mode
String (optional) - Can befixed
orfree
. The default isfree
.continuous
Boolean (optional) - Defaults totrue
.
实例属性
以下为 TouchBarScrubber
实例的可用属性:
touchBarScrubber.items
一个Scrubberitem[] 数组代表Scrubber里的所有物品。 改变这个值会立刻刷新touch bar内的控件。 然而改变数组某元素内的嵌套属性不会刷新touch bar。
touchBarScrubber.selectedStyle
Scrubber中被选择的物品需要有的,一个代表的样式的String
。 改变这个值会立刻刷新touch bar的控件。可选值:
background
- 映射为[NSScrubberSelectionStyle roundedBackgroundStyle]
outline
- 映射到[NSScrubberSelectionStyle outlineOverlayStyle]
none
- Removes all styles.
touchBarScrubber.overlayStyle
一个String
,用来表示在scrubber内被选择的组件应有的样式。 该样式将会覆盖在scrubber组件之上而非其后。 改变这个值会立刻刷新touch bar的控件。 可选值:
background
- 映射为[NSScrubberSelectionStyle roundedBackgroundStyle]
outline
- 映射为[NSScrubberSelectionStyle outlineOverlayStyle]
none
- Removes all styles.
touchBarScrubber.showArrowButtons
一个Boolean
值,表示是否在scrubber中显示左/右选择箭头。改变这个值会立刻刷新touch bar的控件。
touchBarScrubber.mode
一个代表scrubber模式的string
。改变这个值会立刻刷新touch bar的控件。可选值:
fixed
- 映射到NSScrubberModeFixed
free
- 映射到NSScrubberModeFree
.
touchBarScrubber.continuous
一个Boolean
值,表示scrubber是否连续。改变这个值会立刻刷新touch bar的控件。