码迷,mamicode.com
首页 > 其他好文 > 详细

Two-stage rotation animation is deprecate警告

时间:2014-10-07 13:54:54      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:ios

当UINavigationController与UITabBarController用relation segue连接时(UINavigationController作为根),运行会提示:

Two-stage rotation animation is deprecate.This application should use the smoother single-stage animation.


解决办法是:

UINavigationController不应该作为UITabBarController的根来关联,而应该作为UITabBarController的子ViewController的根关联(而UINavigationController的根是UITabBarController)。假设UITabBarController有两个子ViewController,那么按住Ctrl键连线的方式应该是:

-------------------------

UITabBarController

->

第一个UINavigationController

->

第一个UIViewController

-------------------------

UITabBarController

->

第二个UINavigationcontroller

->

第二个UIViewController

-------------------------

也就是说有多少个tab,就要创建相应数量的UINavigationcontroller。

所有的连接方式都要选择relationship segue - root view controller



本文出自 “weimingtom的以心伝心” 博客,请务必保留此出处http://weimingtom.blog.51cto.com/5787478/1560955

Two-stage rotation animation is deprecate警告

标签:ios

原文地址:http://weimingtom.blog.51cto.com/5787478/1560955

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