实例方法
truncation
truncationMode(_:)
为太长而无法放入可用空间的文本行设置截断模式。
声明
func truncationMode(_ mode: Text.TruncationMode) -> some View
返回值
根据您选择的模式截断一行中不同点处的文本的视图。
参数
mode
截断模式,指定在文本视图中截断文本的位置(如果需要)。您可以在文本视图的开头、中间或结尾截断。
详述
使用 truncationMode(_:)
修饰符确定长行中的文本是否在开头、中间或结尾处被截断。删除文本时,通过在行中添加省略号 (...) 来指示截断,以向读者指示缺少文本。
在下面的示例中,文本视图的边界限制了视图显示的文本量,truncationMode(_:)
指定从哪个方向以及在何处显示截断指示符:
Text("This is a block of text that will show up in a text element as multiple lines. The text will fill the available space, and then, eventually, be truncated.")
.frame(width: 150, height: 150)
.truncationMode(.tail)
可用版本
iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+
相关用法
- Swift Optional transaction(_:)用法及代码示例
- Swift Optional transformEffect(_:)用法及代码示例
- Swift Optional textSelection(_:)用法及代码示例
- Swift Optional toolbar(id:content:)用法及代码示例
- Swift Optional tint(_:)用法及代码示例
- Swift Optional toolbar(content:)用法及代码示例
- Swift Optional tabItem(_:)用法及代码示例
- Swift Optional textContentType(_:)用法及代码示例
- Swift Optional touchBarItemPresence(_:)用法及代码示例
- Swift Optional touchBar(_:)用法及代码示例
- Swift Optional task(priority:_:)用法及代码示例
- Swift Optional touchBar(content:)用法及代码示例
- Swift Optional toggleStyle(_:)用法及代码示例
- Swift Optional textInputAutocapitalization(_:)用法及代码示例
- Swift Optional touchBarCustomizationLabel(_:)用法及代码示例
- Swift Optional tag(_:)用法及代码示例
- Swift Optional task(id:priority:_:)用法及代码示例
- Swift Optional touchBarItemPrincipal(_:)用法及代码示例
- 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 truncationMode(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。