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

Can me explane how I can rotate image use anchor point like

https://www.dropbox.com/s/vh3h5cr1mkdbfh3/ex_image2.JPG

on .m

#import <QuartzCore/QuartzCore.h>

on .h

[UIView animateWithDuration:0.7f
                          delay:0
                        options:UIViewAnimationOptionCurveEaseOut
                     animations:^
     {
         self.center = position;
         self.layer.anchorPoint = CGPointMake(-1, 0);
         self.transform = CGAffineTransformMakeRotation(-5);

     }
                     completion:^(BOOL completed){

                     }];

When I use this code I have something like that

https://www.dropbox.com/s/v87abux9dqm4y0p/ex_image1.JPG

share|improve this question

1 Answer

When you apply a rotation transform to a layer, the rotation occurs around the anchor point.

So set the layer's anchor point to (0.0, 0.0) first.

self.layer.anchorPoint = CGPointMake(0.0f, 0.0f);

Then you can just rotate the view and the rotation will occur around the anchor point, (0.0, 0.0).

[UIView animateWithDuration:2.0f animations:^{
    self.transform = CGAffineTransformMakeRotation(3.1415f);
}];

The code will rotate the view one whole time in the way you have pictured.

You can check out the section titled "Anchor Points Affect Geometric Manipulations" in Apple's "Core Animation Programming Guide" for more information.

share|improve this answer
not work like I want – user2037857 Feb 20 at 6:30
Set the anchor point of the view you want to animate to (0.0, 0.0) and then animate it with a rotation. It should work. I made a sample application and animated a red rectangle view in the way you described. – kmikael Feb 20 at 7:05

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.