ios 多视图跳转方法

系统方法:

第一种:

跳转:[self presentModalViewController:control animated:YES];

返回:[self dismissModalViewControllerAnimated:YES];

第二种:

跳转:[self.navigationController pushViewController:subTableViewController  animated:YES];

返回:[self.navigationController popViewControllerAnimated:YES];

自己控制:

 

[self.view addSubview:<#(UIView *)#>]

[self.view removeFromSuperview];

posted on 2012-08-31 10:38  I am fine !  阅读(343)  评论(0编辑  收藏  举报