當我在TabBarController上單擊moreNavigationController時,屏幕上將顯示2個導航欄。有人有線索嗎?2 moreNavigationController上的導航欄
項目文件的鏈接 - >https://dl.dropbox.com/u/9507586/FubonInsuranceTest.zip
當我在TabBarController上單擊moreNavigationController時,屏幕上將顯示2個導航欄。有人有線索嗎?2 moreNavigationController上的導航欄
項目文件的鏈接 - >https://dl.dropbox.com/u/9507586/FubonInsuranceTest.zip
做一兩件事,在你tabbar.m類中添加這行代碼。
[morenavbar setHidden:YES];
在此功能
- (void)navigationController:(UINavigationController *)navigationController
willShowViewController:(UIViewController *)viewController
animated:(BOOL)animated
在moreNavigationController類的viewWillAppear
功能, 添加以下代碼行
[self.navigationController setNavigationBarHidden:YES];
moreNavigationController的導航欄將會消失,但是當我點擊moreNavigationController中的tableview細胞之一,將有沒有辦法彈出回以前的tableview除了我點擊moreNavigationController TabBarItem。 – Lee 2013-03-11 09:42:31
那麼爲什麼你不刪除默認導航欄,並創建自己的自定義導航欄? – JPiOS 2013-03-11 10:20:12