i would like to start 2D game development (from beginning)... and the first thing i would like to do is to fill a uiimageview with an space ship picture and steer it with two buttons... so the spaceship always moves to the direction of its nose...

if i push the left button, the imageview rotates left, if i push the right button it rotates right. the space ship could rotate about 360 degrees...

I already got this code up till here...

- (void)rotateShip:(double)degrees{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.1];
    theShip.transform = CGAffineTransformMakeRotation(degrees);
    [UIView commitAnimations];
}

now i need to move the space ship to its head direction, to fly across the screen... like if i push left, the image rotates left and should fly right to the nose of my ship...

I could image that there is a simple math calculation for this, but i realy dont know how to do it :-)

Does anybody have an idea how to do this?

thanks in advance

dennis

link|improve this question

0% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.