如何从一个视图重定向到Master View Controller

时间:2012-09-13 06:48:07

标签: iphone ios ios5

如何从一个视图重定向到Master View Controller。我目前在登录页面,现在我想加载PhotoMasterViewController。任何人都可以告诉我该怎么做。

2 个答案:

答案 0 :(得分:0)

在masterViewController中添加此代码并使用pushViewController -

-(void)NextView:(id)sender
{
PhotoMasterViewController *Photo = [[PhotoMasterViewController alloc]initWithNibName:@"PhotoMasterViewController" bundle:nil];
[self.navigationController pushViewController:Photo animated:YES];
}

答案 1 :(得分:0)

为什么不使用“ModalViewController”

它比navigationController更好,你可以像这样使用

-(void)NextView:(id)sender
{
PhotoMasterViewController *Photo = [[PhotoMasterViewController alloc]initWithNibName:@"PhotoMasterViewController" bundle:nil];
//enum, you can choose which style you like
Photo.modalPresentationStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:Photo animated:YES];
}