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

ios: push viewcontroller 时出现Presenting view controllers on detached view controllers is discouraged 警告

时间:2015-08-16 19:38:34      阅读:629      评论:0      收藏:0      [点我收藏+]

标签:

原因:a,b,c 三个viewcontroller,a作为根视图,b.view 添加到a上,在b中模态(presentViewController)弹出c.

       这种情况就会出现标题的警告

 

解决方法:

1. [self.view.window.rootViewControllerpresentViewController:controller
animated:YEScompletion:nil];

/*这里一段解释

 The reason of this warning is i was presenting a view controller over a small view that is not full size view. Given below is the image of my project. where on click on four option above. User navigate to different childviewcontroller‘s view.(it works like tabViewcontroller). But the childviewcontroller contains view of small size. So if we present a view from childviewcontroller it gives this warning.

*/

本人也觉得这是个治标不治本的方法,这个方法表面上好像解决了问题,实际可能在特殊情况下引发更严重的bug

2.正确使用viewcontroller,此问题是误用viewcontroller引起的

 

参考资料:

http://stackoverflow.com/questions/19890761/warning-presenting-view-controllers-on-detached-view-controllers-is-discourage

http://onevcat.com/2012/02/uiviewcontroller/

ios: push viewcontroller 时出现Presenting view controllers on detached view controllers is discouraged 警告

标签:

原文地址:http://www.cnblogs.com/yoon/p/4734776.html

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