2011年3月29日 星期二

[UITabBarController] 將TabbarController 隱藏

TabbarController 
       |____ NavigationController
                            |_____________ViewController



當 NavigationController push 頁面後,
有些頁面可能想要隱藏下方的 Tab bar,
可以用下面的方式進行處理:


self.hidesBottomBarWhenPushed = YES;        
[self.navigationController pushViewController:ViewPage animated:YES];     
self.hidesBottomBarWhenPushed = NO;

0 意見: