0

如何从一个视图重定向到主视图控制器。我目前在登录页面,现在我想加载 PhotoMasterViewController。谁能告诉我该怎么做。

4

2 回答 2

0

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

-(void)NextView:(id)sender
{
PhotoMasterViewController *Photo = [[PhotoMasterViewController alloc]initWithNibName:@"PhotoMasterViewController" bundle:nil];
[self.navigationController pushViewController:Photo animated:YES];
}
于 2012-09-13T06:50:23.133 回答
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];
}
于 2012-09-13T10:21:53.253 回答