вы можете использовать это ... это не вращение, а перемещение изображения из одного места в другое
CGRect tempFrame=theView.frame;
tempFrame.origin.x=tempFrame.origin.x+50;
[UIView beginAnimations:@"" context:nil];
[UIView setAnimationDuration:2];
theView.frame=tempFrame;
[UIView commitAnimations];