博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NavigationViewController 返回到根视图
阅读量:6712 次
发布时间:2019-06-25

本文共 1821 字,大约阅读时间需要 6 分钟。

(一)使用NavigationViewController进行页面跳转时,应该使用pushViewController方法来跳转至下一页面,这样的话,下一页面同样在NavigationViewController容器中。

1、跳转到下一页面:

PowerViewController *power = [[PowerViewController alloc] init];

//所要跳转页面PowerViewController中有个属性dictionary1是个NSMutableDictionary类型的容器
[power.dictionary1 setObject:[self.outTxtPass text] forKey:ALONE_SITEPRIZE_PWD];
//使用pushViewController跳转到下一页面
[self.navigationController pushViewController:power animated:YES];

2、从当前页面返回到上一页面并传值过去:

//此页面已经存在于self.navigationController.viewControllers中,并且是当前页面的前一页面  

PowerViewController *power = [self.navigationController.viewControllers objectAtIndex:self.navigationController.viewControllers.count-
2
];
//初始化其属性
power.dictionary = nil;
//传递参数过去
power.dictionary = [NSMutableDictionary dictionaryWithDictionary:self.dictionary1];
//使用popToViewController返回并传值到上一页面
[self.navigationController
popToViewController:power
animated:YES
];
返回到上一页后,上一页面显示后要接收参数,并刷新。注意此时应该在viewDidAppear中进行判断并接收传递的值:

-(
void
)viewDidAppear:(BOOL)animated
{
  
//判断并接收返回的参数
 
}
3、从当前页面返回到上一页面(无需传值)的方法:
//返回到上一界面
-(IBAction)backOff:(id)sender
{
    [self.navigationController popViewControllerAnimated:true];
}

(二)关于ios中 viewcontroller的跳转问题,其中有一种方式是采用navigationController pushViewController 的方法,比如我从主页面跳转到了一级页面,又从一级页面跳转到了二级页面,然后从二级页面跳转到了三级页面,依次类推。如果一级一级的返回我知道是没有问题的,调用navigationController popViewControllerAnimated就行了。但是某些情况下我可能想要马上回到主页面,而不是一级一级的返回(如果有很多层会很累的),那该怎么办呢?

1.返回根页面vc用 

[self.navigationController popToRootViewController]

2.返回根页面vc用 :

[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:2] animated:YES];

或(通过class定位)

for
(UIViewController *controller in self.navigationController.viewControllers) {
    
if
([controller isKindOfClass:[TargetController
class
]]) {
        
[self.navigationController popToViewController:controller animated:YES];
    
}
}

转载地址:http://boolo.baihongyu.com/

你可能感兴趣的文章
Android中主要类的继承关系梳理汇总
查看>>
webApp爬坑之路(1)
查看>>
Python发送邮件模块之——yagmail模块
查看>>
Android 分享微信小程序失败二三事
查看>>
SpringBoot通过jar包启动时MyBatis无法定位实体类
查看>>
linux系统常用命令
查看>>
面对霍金的担忧,人工智能会让我们在火星实现定居吗
查看>>
定制一款漂亮的终端
查看>>
timed out waiting for to be synced
查看>>
(5)Python字典
查看>>
mysql问题
查看>>
为何要领域驱动设计
查看>>
ios GCD ---- (1)
查看>>
Pi编译安装PHP/Nginx并安装完整LEMP环境
查看>>
HTTPS 也不安全?被发现新漏洞会暴露你的数据
查看>>
x86 和 ARM 谁能主宰服务器市场?Linux 之父和 Redis 之父有分歧了
查看>>
dva.js学习梳理集
查看>>
ECS运维神器重装上阵,云助手亮相控制台
查看>>
Nacos 发布 0.9.0 版本,为 GA 作准备
查看>>
运维利器 RunDeck v3.0.15 发布, 服务器自动化操作
查看>>