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

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

2016-07-08 11:23 543 查看

原因

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

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

解决方法:

//如下
[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引起的
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息