Possible Duplicate:
Can I use CGAffineTransformMakeRotation to rotate a view more than 360 degrees?

I'm trying to create a game where pushing a button spins an dial image, having trouble with the rotation code. Goal is to spin the image from its current position by a % of 360, i.e .4 * 360, spin the image 144 degrees. Thanks Guys!

-(IBAction)spin:(id)sender
{

    float strenght = DEGREES_TO_RADIANS(.5 * 360);

    [UIView animateWithDuration:0.5f delay:0.0f options:UIViewAnimationCurveEaseOut animations:^
    {
        [spinner_iv setTransform:CGAffineTransformRotate([spinner_iv transform],strenght)];
    } 
    completion:^(BOOL finished) 
    {
        //done
    }];
}
link|improve this question
What's wrong with what you've got? What is/isn't working? – Nick Bull Feb 21 at 9:30
just gives unexpected results, it works if rotating by <179 degrees at a time, anything over doesn't work. Noticed when NSLogging my spinner_iv rotation it goes from 0-180,-180-0... i'm lost. oh and thank you for responding. – Nicholas L. Eby Feb 21 at 10:56
Show your DEGREES_TO_RADIANS code – Nick Bull Feb 21 at 11:13
proj -> cl.ly/EOu6 , it's literally 4 lines of code – Nicholas L. Eby Feb 21 at 11:33
feedback

closed as exact duplicate by casperOne Apr 14 at 13:07

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

UIView animations using CGAffineTransform take the 'shortest path', so if you request a clockwise rotation of 270 degrees, it will animate anticlockwise by 90 degrees.

You can get any number of spins if you instead rotate the view layer using CATransform3D - yes, use this even if you are rotating in 2D. See Can I use CGAffineTransformMakeRotation to rotate a view more than 360 degrees?

link|improve this answer
feedback

Converting degrees to radians is

Radians = Degrees * (PI/180)

link|improve this answer
I couldn't see your code, so I'm guessing this might be what's wrong. – Nick Bull Feb 21 at 11:55
feedback

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