实例方法
touch
touchBarCustomizationLabel(_:)
设置标识视图函数的user-visible 字符串。
声明
func touchBarCustomizationLabel(_ label: Text) -> some View
返回值
带有一组自定义标签的 Touch Bar 元素。
参数
label
包含自定义标签的
Text
视图。
详述
此字符串在用户自定义期间可见。
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"))
}
可用版本
macOS 10.15+
相关用法
- Swift Optional touchBarItemPresence(_:)用法及代码示例
- Swift Optional touchBar(_:)用法及代码示例
- Swift Optional touchBar(content:)用法及代码示例
- Swift Optional touchBarItemPrincipal(_:)用法及代码示例
- Swift Optional toolbar(id:content:)用法及代码示例
- Swift Optional toolbar(content:)用法及代码示例
- Swift Optional toggleStyle(_:)用法及代码示例
- Swift Optional textSelection(_:)用法及代码示例
- Swift Optional tint(_:)用法及代码示例
- Swift Optional tabItem(_:)用法及代码示例
- Swift Optional textContentType(_:)用法及代码示例
- Swift Optional task(priority:_:)用法及代码示例
- Swift Optional transaction(_:)用法及代码示例
- Swift Optional textInputAutocapitalization(_:)用法及代码示例
- Swift Optional truncationMode(_:)用法及代码示例
- Swift Optional tag(_:)用法及代码示例
- Swift Optional transformEffect(_:)用法及代码示例
- Swift Optional task(id:priority:_:)用法及代码示例
- Swift Optional symbolVariant(_:)用法及代码示例
- Swift Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)用法及代码示例
- Swift Optional mask(alignment:_:)用法及代码示例
- Swift Optional listSectionSeparatorTint(_:edges:)用法及代码示例
- Swift Optional badge(_:)用法及代码示例
- Swift Optional fullScreenCover(isPresented:onDismiss:content:)用法及代码示例
- Swift Optional keyboardType(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional touchBarCustomizationLabel(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。