Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to rotate a UIImageView and keep it centered. In the image below I would like the rotated arrow (red crosshairs) center point to match up with the center point of the 0° arrow (blue crosshairs).

I have tried various anchor points but I can't seem to get it to behave as I want.

// Rotate
self.arrowRotatedImageView.layer.anchorPoint = CGPointMake(0.5,0.5);
CGFloat angle = 45 * (M_PI/180);
self.arrowRotatedImageView.transform = CGAffineTransformMakeRotation(angle);

What am I missing? I'm reading through the Apple docs but I haven't been able to figure it out.

iPhone screenshot of a rotated arrow on top of a non-rotated arrow

share|improve this question

1 Answer

up vote 1 down vote accepted

Turns out the weird rotation issue was related to the new iOS 6 autolayout feature. Once I took some time to understand how the align constraints worked I was able to achieve the results I wanted.

If you run into weird rotation issues and are using iOS 6 with autolayout enabled chances are your constraints need adjusting.

share|improve this answer
Thanks for the answer, the same problem has taken all my day till i've found your answer – dreampowder Jan 9 at 15:19
would be nice if you shared what you learned about constraints to solve the problem. :) – software evolved Apr 12 at 1:58

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.