i currently use that method to transition between view1 to view2:
-(IBAction)goToView2{
view2.modalTransitionStyle=UIModalTransitionStyleCoverVertical;
[self presentModalViewController:view2 animated:YES];
}
This make the view2 cover view1 vertically, what i want is to cover it horizontaly as it down in the Navigation based application template, is there any possibility to do so, i use a View based application, thanx in advance :)