UITabBarController在Three20 TTThumbsViewController中消失

时间:2012-02-28 20:26:52

标签: xcode uitabbarcontroller three20 ttthumbsviewcontroller

我在将TTThumbsViewController和UITabBarController放在一起时遇到了麻烦。切换到Three20的TTThumbsViewController时,标签栏将消失。我已经阅读了堆栈溢出中的所有问题,没有任何帮助。我甚至试图设置所有

self.wantsFullScreenLayout = NO; 
self.hidesBottomBarWhenPushed = NO;

在我的thumbsviewcontroller和Three20UI项目中。这些方法都不起作用。

我正在使用故事板在Xcode4中构建我的应用程序,并添加此拇指库是最后一部分。

2 个答案:

答案 0 :(得分:0)

我最终通过删除代码中的three20导航栏解决了这个问题,只需在故事板中使用uinavigationcontroller。我不知道为什么,但问题解决了。我希望这能帮助像我这样的人使用带有three20的故事板。

答案 1 :(得分:0)

我意识到这是一个古老的帖子,但如果你使用:

self.wantsFullScreenLayout = NO; 
self.hidesBottomBarWhenPushed = NO;

IT意味着推动已经发生,因此否定了命令。请改用:

GalleryViewController *gallery = [[GalleryViewController alloc] init];
gallery.wantsFullScreenLayout = NO; 
gallery.hidesBottomBarWhenPushed = NO;

然后推它。这很有效。