iOS视图切换

来源:互联网 发布:电商美工的前景 编辑:程序博客网 时间:2024/05/16 13:39

.NavigationController切换UIViewController的两种方式

方法一右侧进入

1 SecondViewController* svc=[[SecondViewController alloc]init];2 [self.navigationController pushViewController:fvc animated:YES];

返回到上一个

[self.navigationController popViewControllerAnimated:YES];

另一种方法从下面切入

SecondViewController* svc=[[SecondViewController alloc]init];[self.navigationController presentModalViewController:svc animated:YES];[svc release];

 返回到上一个UIViewController

[self.navigationController dismissModalViewControllerAnimated:YES];

2.如果没有导航栏NavigationController的话 也是可以切换的

SecondViewController* svc=[[SecondViewController alloc]init];[self presentModalViewController:svc animated:YES];[svc release];

 返回到上一个UIViewController

[self dismissModalViewControllerAnimated:YES];




[self.navigationController pushViewController:subTableViewController  animated:YES];
 
//描述:通过 NSNavigationBar 进行跳转
 
[self.navigationController popViewControllerAnimated:YES];

 

//描述:在子视图返回到上级视图


AddInfo *control = [[AddInfo alloc] init];
 
[self presentModalViewController:control animated:YES];
[control release];
 
//描述:通过事件进行跳转
 
[self dismissModalViewControllerAnimated:YES];  //描述:通过事件进行返回。


//self.view.window.rootViewController = detailViewController;
[self.view.window addSubview:detailViewController.view];

[self.view removeFromSuperview]; 

0 0
原创粉丝点击