hidesBottomBarWhenPushed

hidesBottomBarWhenPushed

当推送另一个具有用hidesBottomBarWhenPushed隐藏底部栏的 View Controller 时,我得到一个非常奇怪的动画行为。我发现的第一个线程是:Strange animation on iOS 7 when using hidesBottomBarWhenPushed in app built targeting <= iOS 6,但是由于我的应用程序仅在iOS7上构建和运行,因此问题并非如此。

请观看以下显示问题的视频(在右上角查看):

https://dl.dropboxusercontent.com/u/66066789/ios7.mov

仅当hidesBottomBarWhenPushed为true时,才会出现此奇怪的动画阴影。
我该如何解决?

最佳答案

解决了我的问题:

self.tabBarController.tabBar.hidden=YES;

在第二个 View Controller 是要走的路。

10-07 19:49