Im using the following code to animate the page.
[UIView a animateWithDuration:0.3
animations:^{
text.alpha=0;
} completion:^(BOOL finished) {
//some code
}];
Now I want to change the view using some animation style (curl ripple etc). How do I do it?
1 Answer