This is a built-in animation. Create the View Controller you want to display in the modal view and then present it within a Navigation Controller.
ViewController *viewController = [[ViewController alloc] initWithNibName:@"ModalEvent" bundle:nil];
viewController.delegate = self;
modalNavController = [[UINavigationController alloc] initWithRootViewController:viewController];
modalNavController.modalPresentationStyle = UIModalPresentationFormSheet;
modalNavController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:modalNavController animated:YES];
[viewController release];