Instance Method インスタンスメソッド

alignmentGuide(_:computeValue:)

Sets the view’s horizontal alignment. ビューのもつ水平整列を設定します。

Declaration 宣言

func alignmentGuide(_ g: HorizontalAlignment, computeValue: @escaping (ViewDimensions) -> CGFloat) -> some View

Return Value 戻り値

A view modified with respect to its horizontal alignment according to the computation performed in the method’s closure. あるビュー、それの水平整列に関してこのメソッドのもつクロージャにおいて実行される計算によって修正されたもの。

Parameters パラメータ

g

A HorizontalAlignment value at which to base the offset.

computeValue

A closure that returns the offset value to apply to this view. あるクロージャ、それはこのビューに適用するオフセット値を返します。

Discussion 議論

Use alignmentGuide(_:computeValue:) to calculate specific offsets to reposition views in relationship to one another. You can return a constant or can use the ViewDimensions argument to the closure to calculate a return value. alignmentGuide(_:computeValue:)を使って、特定のオフセットを計算して、ビューそれらをお互いの関係において再度位置決定してください。あなたは、定数を返すことができます、またはViewDimensions引数をクロージャに対して使って戻り値を計算することができます。

In the example below, the HStack is offset by a constant of 50 points to the right of center: 下の例において、HStackは50ポイントの定数によって中心の右へとオフセットされます:


VStack {
    Text("Today's Weather")
        .font(.title)
        .border(.gray)
    HStack {
        Text("🌧")
        Text("Rain & Thunderstorms")
        Text("⛈")
    }
    .alignmentGuide(HorizontalAlignment.center) { _ in  50 }
    .border(.gray)
}
.border(.gray)

Changing the alignment of one view may have effects on surrounding views. Here the offset values inside a stack and its contained views is the difference of their absolute offsets. あるビューの整列を変更することは、周りのビューに影響を与えるかもしれません。ここでスタックそしてそれの含んでいるビューの内側のオフセット値それらは、それらの絶対オフセットの違いがあります。

A view showing the two emoji offset from a text element using a

See Also 参照

Alignment