こんにちは 私のアプリケーションでは、私はloginControlを呼び出すときにTabBar.Atを使用しています。[login hidesBottomBarWhenPushed=YES];
を使用してタブバーを隠しています。ログインが成功すればdetailViewControllerを表示しますが、 hidesBottomBarWhenPushed
〜NO
に設定してください。
問題は何ですか...誰でも私を助けることができますか?ボトムtabBar hide
1
A
答えて
0
ログインビューコントローラが不要な場合は、もう一度ポップしてから2番目のボタンを押すことができます。これは作業を行いますが、戻るボタンには奇妙なアニメーションがあります。まだこのソリューション:)
[navController popViewControllerAnimated:NO];
編集:
が
loginSuccessController *login = [[loginSuccessController alloc] initWithNibName:@"loginSuccessController" bundle:nil];
[self.navigationController popViewControllerAnimated:NO];
[self.navigationController pushViewController:login animated:YES];
0
2
このメソッドを使用のために[self setHidesBottomBarWhenPushed:NO];
を試すことができます....これを試してみてください非表示と表示タブバー:)
-(void)makeTabBarHidden:(BOOL)hide
{
UITabBarController *tabBarController = self.tabBarController;
if (hide == tabBarController.tabBar.hidden) {
return;
}
UIView *contentView;
if ([[tabBarController.view.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]]) {
contentView = [tabBarController.view.subviews objectAtIndex:1];
} else {
contentView = [tabBarController.view.subviews objectAtIndex:0];
}
if (hide) {
contentView.frame = tabBarController.view.bounds;
}
else {
contentView.frame = CGRectMake(tabBarController.view.bounds.origin.x,
tabBarController.view.bounds.origin.y,
tabBarController.view.bounds.size.width,
tabBarController.view.bounds.size.height - tabBarController.tabBar.frame.size.height);
}
tabBarController.tabBar.hidden = hide;
}
関連する問題
- 1. TabBarのTabBarの内部ビュー
- 2. 「ボトム」はエッジ
- 3. 余裕ボトム[サンプル]?
- 4. ボトムのカスタムボーダー
- 5. ボトムのナビゲーションバー
- 6. FreeRTOSのボトム・ハーフズ?
- 7. CSSレイアウトプッシュDivボトム
- 8. onclick div hide、setTimeout div hide
- 9. ハイチャート:カスタムマージンを持つボトムの凡例ボトムはすでに
- 10. Flex TabBarドラッグドロップ
- 11. デフォルトのTabBarアプリケーション
- 12. android tabbar oreintation issue
- 13. Swift UITableView with Tabbar
- 14. TabBarコントローラとNavigationBar
- 15. Tabbarのカスタムフォント
- 16. TabBarアプリケーションのABPeoplePickerNavigationController
- 17. Blackberry gloss tabbar
- 18. AppDelegate Touch3D Xcode - TabBar
- 19. UINavigationController hide hide navigationBar - アニメーションの問題
- 20. インラインdiv - ボトムからボトムにボトムを引きますが、トップインラインを維持します
- 21. フクロウカルーセルナビゲーションhide
- 22. 揃えアイコンのTabBar
- 23. カードウィジェット内のTabBarナビゲーション
- 24. TabBarの作成Three20
- 25. スウィフト:TabBarにはimagePickerController
- 26. カスタムTabBarカラーiOS 5.0.1
- 27. TabBarアイテムをTabBarの幅に伸ばす方法は?
- 28. tabbarコントローラのtabbarがhidになっていません
- 29. Tabbar Controller Tabbarを非表示にするiOSの問題
- 30. Sliding-In UIViewボトムより
コードを教えてください。あなたのdetailViewをtabBarControllerの上に押している可能性があります。 –