I have an info button on FirstViewControlle.xib. When I click on it, I’m going to info.xib.
-(IBAction)info //кнопка перехода на info.xib { InfoViewController *ivc = [[InfoViewController alloc]initWithNibName:@"InfoViewController" bundle:nil]; UIBarButtonItem *backBtn2 = [[UIBarButtonItem alloc]initWithTitle:@"to first" style:UIBarButtonItemStyleBordered target:nil action:nil]; [[self navigationItem]setBackBarButtonItem:backBtn2]; //переход [UIView beginAnimations:nil context:NULL]; [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; [UIView setAnimationDuration:1.0]; [self.navigationController pushViewController:ivc animated:NO]; [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.navigationController.view cache:NO]; [UIView commitAnimations]; }