I want to animate a view like UIViewAnimationTransitionCurlUp.
I don't know the exact way.
plz help me.
Thanks in advance.
I want to animate a view like UIViewAnimationTransitionCurlUp.
I don't know the exact way.
plz help me.
Thanks in advance.
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.2];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:yourView cache:YES];
[yourView changeSomethingToThePositionOrWhatever];
[UIView commitAnimations];