码迷,mamicode.com
首页 > 移动开发 > 详细

IOS开发之页面切换

时间:2015-05-11 17:27:55      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

从一个ViewController切换到另一个ViewController有下面几种方法:

(1)addsubview方法切换视图
         self.view addSubview:(加载的新页面);
     相应的 [self.view removeFromSuperview];移除添加的view
 
(2)self.view insertSubview:(加载的新页面) atIndex:n;
对n的解释:页面都是层次叠加的,n表示加载到那一层上面
 
(3)presentModalViewController方法

        photoNacController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;

     photoNacController.modalPresentationStyle = UIModalPresentationFullScreen;

    self presentModalViewController:(加载的新页面) animated:
    modalTransitionStyle用于设置页面切换的动画
     modalPresentationStyle用于设置视图显示的方式
         两种方法试试就知道用途了!
 
(4) pushViewController 导航
       [self.navigationController pushViewController:(加载的新页面) animated:YES];
      对应的

        [self.navigationController popViewControllerAnimated:YES];

 

IOS开发之页面切换

标签:

原文地址:http://www.cnblogs.com/cynthia116/p/4494882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!