您的位置:首页 > 移动开发 > IOS开发

IOS 页面跳转方式总结

2013-04-12 10:13 302 查看
//方法一:
跳转:[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];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: