vote up 0 vote down star

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.

flag

55% accept rate

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.