博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone开发之解决viewWillAppear失效
阅读量:5022 次
发布时间:2019-06-12

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

转自:http://linuxstuding.iteye.com/blog/1224399

你可曾遇到过viewWillAppear没有被调用到的情况

产生原因是用了UINavigationController.

将UINavigationController的view作为subview添加到了其他viewController的view中。
或者把UINavigationController添加到UITabbarController中了。
此时,NavigationController的stack里面的viewController就收不到-(void)viewWillAppear:(BOOL)animated;等4个方法的调用。

 

原因呢

 

Apple Docs state:

 

Warning: If the view belonging to a view controller is added to a view hierarchy directly, the view controller will not receive this message. If you insert or add a view to the view hierarchy, and it has a view controller, you should send the associated view controller this message directly. Failing to send the view controller this message will prevent any associated animation from being displayed.

不过后面的到4.0的文档就没有发现这样的文字描述了,但是还是没能够调用的到这样

只是添加的更复杂的文档,头晕晕看不下去了。

 

解决方法两种:

1,在导航控制器上层controller的viewWillAppear中显式调用viewWillAppear方法。

-(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [subNavCntlr viewWillAppear:animated]; } - (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; [subNavCntlr viewWillDisappear:animated]; }

2,把导航控制器上层controller设为UINavigationController的delegate

nav.delegate = self;

@interface RootViewController : UIViewController 
{ UINavigationController *navController;}

 

- (void)navigationController:(UINavigationController *)navigationController     willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {    [viewController viewWillAppear:animated];}- (void)navigationController:(UINavigationController *)navigationController     didShowViewController:(UIViewController *)viewController animated:(BOOL)animated {    [viewController viewDidAppear:animated];} 凑合着用吧,我喜欢第二种,不过我更喜欢干脆不再viewWillappear里做事情了。

转载于:https://www.cnblogs.com/wangpei/p/4024550.html

你可能感兴趣的文章
【转】 mysql反引号的使用(防冲突)
查看>>
邮件中的样式问题
查看>>
AJAX 状态值与状态码详解
查看>>
php面向对象编程(oop)基础知识示例解释
查看>>
1.在数组中找到与给定总和的配对
查看>>
树的子结构
查看>>
关于根据Build Platform或者OS 加载x86或者x64 dll的问题
查看>>
程序员高效开发的几个技巧
查看>>
js-权威指南学习笔记19.2
查看>>
hexo 搭建博客
查看>>
关于 UIWebView 几个高级用法
查看>>
maven创建的项目中无法创建src/main/java 解决方案
查看>>
华为软件开发云测评报告二:代码检查
查看>>
集合1
查看>>
js 原生 ajax
查看>>
关键词 virtual
查看>>
建造者模式(屌丝专用)
查看>>
UVALive 4730 Kingdom +段树和支票托收
查看>>
[APIO2010]特别行动队
查看>>
[SCOI2016]幸运数字
查看>>