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

ios Presenting view controllers on detached view controllers is discouraged <BasicInfoVC: 0x7fb2dc24

时间:2016-09-22 12:52:23      阅读:464      评论:0      收藏:0      [点我收藏+]

标签:

出现的原因:

  在控制器A中添加控制器B--[A.view addSubView: B.view]

  在控制器B中弹出新的控制器时报此waring

解决:

[A addChildViewController:B];

[B.parentViewController presentViewController:alertController animated:YES completion:nil];

 

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

ios Presenting view controllers on detached view controllers is discouraged <BasicInfoVC: 0x7fb2dc24

标签:

原文地址:http://www.cnblogs.com/zmtBK/p/5895656.html

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