Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a CALayer, containing few sublayers (CATextLayers). I'm applying transformations on the CALayer on some usual gestures (zoom, pan). Everything works perfectly fine except that the scaling (zoom) is done towards the bottom left corner instead of the center of the screen.

I found some info in the CoreAnimation programming guide and I tried setting the anchor point to the center of my screen so that every transformation would be done towards that anchor....But it doesn't seem to be working as expected.

Here's my code :

// inside the init function :

_layerMgr = [[CALayer alloc] init];

_layerMgr.frame = [[UIScreen mainScreen] bounds];

_layerMgr.anchorPoint = CGPointMake(0.5, 0.5);

// done on gesture events :

CGAffineTransform tt = CGAffineTransformMakeTranslation( offset.x, -offset.y);

CGAffineTransform st = CGAffineTransformMakeScale( scale ,scale );

CGAffineTransform rt = CGAffineTransformMakeRotation(rotation);

transform = CGAffineTransformConcat( tt, CGAffineTransformConcat( st,rt) );

_layerMgr.transform = CATransform3DMakeAffineTransform(_transform);

Maybe the problem comes from my subviews ? I've added them using the addSubView method...nothing fancy...

share|improve this question

1 Answer

try to transform on "YOUR" _layerMgr.transform instead of creating a new one:

for example:

[_layerMgr setTransform:CGAffineTransformScale (_layerMgr.transform, 2, 2)];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.