Return Value 戻り値
A view that can compress the space between characters when necessary to fit text in a line. あるビュー、それはテキストを1行に収めるために必要な場合に文字間の空間を縮めることができます。
Availability 有効性
Technology
A view that can compress the space between characters when necessary to fit text in a line. あるビュー、それはテキストを1行に収めるために必要な場合に文字間の空間を縮めることができます。
flag
A Boolean value that indicates whether the space between characters compresses when necessary. あるブール値、それは必要な場合は文字間の空間が縮むかどうかを指し示します。
Use allows
to enable the compression of inter-character spacing of text in a view to try to fit the text in the view’s bounds.
In the example below, two identically configured text views show the effects of allows
on the compression of the spacing between characters:
VStack {
Text("This is a wide text element")
.font(.body)
.frame(width: 200, height: 50, alignment: .leading)
.lineLimit(1)
.allowsTightening(true)
Text("This is a wide text element")
.font(.body)
.frame(width: 200, height: 50, alignment: .leading)
.lineLimit(1)
.allowsTightening(false)
}