视图切换的方式

来源:互联网 发布:郑州知豆电动汽车租赁 编辑:程序博客网 时间:2024/05/16 08:31

1.用UINavigationController的时候用pushViewController:animated

前往: [self.navigationControllerpushViewController:webBrowseranimated:YES];

返回: [self.navigationControllerpopViewControllerAnimated:YES];



2. 其他时候用presentModalViewController:animated
前往:[self presentModalViewController:myviewControlleranimated:YES];
返回:[selfdismissViewControllerAnimated:YEScompletion:nil];
 
 


原创粉丝点击