A CGAffine
to apply to the view.
CGAffine
をこのビューに適用します。
Instance Method
インスタンスメソッド
transform
transformEffect(_:)
Applies an affine transformation to this view’s rendered output.
アフィン変換をこのビューのもつ描画された出力に適用します。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Technology
- Swift
UI
Declaration 宣言
func transformEffect(_ transform: CGAffineTransform
) -> some View
Parameters パラメータ
transform
Transform Transform
Discussion 議論
Use transform
to rotate, scale, translate, or skew the output of the view according to the provided CGAffine
.
transform
を使って、ビューの出力をこの提供されたCGAffine
によって回転、拡大縮小、平行移動、または傾斜させてください。
In the example below, the text is rotated at -30˚ on the y
axis.
下の例では、テキストは -30˚ だけy
軸上で回転されます。
let transform = CGAffineTransform(rotationAngle: -30 * (.pi / 180))
Text("Projection effect using transforms")
.transformEffect(transform)
.border(Color.gray)