views:

2144

answers:

1

I want to animate a view like UIViewAnimationTransitionCurlUp.

I don't know the exact way.

plz help me.

Thanks in advance.

+1  A: 
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.2];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:yourView cache:YES];
[yourView changeSomethingToThePositionOrWhatever];
[UIView commitAnimations];
coneybeare