在Rubymotion中隐藏tabBar

时间:2012-11-15 10:04:56

标签: rubymotion

我正在Rubymotion中构建一个iOS应用程序。我想创建一个自定义tabBar,所以我需要 使用真正的tabBar但隐藏它。如何在Rubymotion中隐藏tabBar?

1 个答案:

答案 0 :(得分:2)

要隐藏标签栏,您可以使用hidesBottomBarWhenPushed。 目标C是:

MyController *myController = [[MyController alloc]init]; 
myController.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:myController animated:YES];
[myController release];

因此RubyMotion代码是

@my_controller = MyController.alloc.init
@my_controller.hidesBottomBarWhenPushed = true
self.navigationController.pushViewController(@my_controller, animated:true)

我希望这会有所帮助。如果您想查看更多对标签栏的引用,请检查: https://github.com/IconoclastLabs/rubymotion_cookbook/tree/master/ch_2/12_tabbars 或者,如果您想查看导航控制器的基础知识,请检查 https://github.com/IconoclastLabs/rubymotion_cookbook/tree/master/ch_2/11_navbarbuttons

我希望这有帮助!