Andre
Andre

Reputation: 4487

iPhone CALayer's rotation axis

I'm rotating a CALayer on the X axis, but even if it's displaced on the Z axis, it uses the Z = 0 as axis for the rotation?

Is there a way of telling it to use the bottom of the plane, as the axis?

Thank you!

Upvotes: 1

Views: 1141

Answers (1)

Lily Ballard
Lily Ballard

Reputation: 185671

The transform of a CALayer uses the layer's anchor as its origin. You could try adjusting the anchorPoint and anchorPointZ properties of the layer.

Upvotes: 2

Related Questions