how can we give page curl effect for ModalViewController can we give custom animation if i use this code
PageThreeViewController *pagethreecontroller = [[PageThreeViewController alloc]
initWithNibName:@"PageThreeViewController" bundle:nil];
//UIViewAnimationTransition trans = UIViewAnimationTransitionCurlUp;
[UIView beginAnimations: nil context: nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:[self view] cache:NO];
// do your view swapping here
//[UIView setAnimationTransition: trans forView: [self view] cache: YES];
[self presentModalViewController: pagethreecontroller animated: NO];
[UIView commitAnimations];
I doesnot seem to work please help me Thanks in advance