如何从一个视图重定向到Master View Controller。我目前在登录页面,现在我想加载PhotoMasterViewController。任何人都可以告诉我该怎么做。
答案 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];
}