I want to set my text field to animate from left to right during my scene transitions. At first i thought of using:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:.5];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:[[Director sharedDirector] openGLView] cache:YES];
And Commit the animation once the scene i being transistionned:
[UIView commitAnimations];
However, I didn't find anything that would simulate what I wanted.
