2014-09-26 179 views
-2

我總共有9個標籤欄項目每個標籤欄項目都與UIViewController相關聯。在4個標籤欄項目之後,其他5個應按照More的順序進行。現在我找不到自定義More Screen的方法(請參閱下圖)。請幫幫我。提前致謝。 enter image description here自定義更多視圖控制器

+2

http://stackoverflow.com/questions/438381/customizing-the-more-menu-on-a-tab-bar – 2014-09-26 06:58:34

回答

1
UINavigationController * moreNavControl = tabBarController.moreNavigationController; 

現在您可以更改導航欄

moreNavControl.navigationBar.barStyle 

你可以得到的tableview對象這樣的外觀,之後你想用的tableview做什麼都操作..

UITableView *tblView = (UITableView *)moreNavControl.topViewController.view; 
相關問題