1
Q
導航欄上彈出
A
回答
2
當您彈出屏幕您回到上一屏幕。 在預覽屏幕中,您必須在viewWillAppear中調用此方法。
-(void) viewWillAppear: (BOOL)animated{
[self.navigationController setNavigationBarHidden:YES animated:animated];
[super viewWillAppear:animated];
}
這對我很有用。
0
這是@Nikunj答案的Swift版本。
override func viewWillAppear(_ animated: Bool) {
navigationController?.setNavigationBarHidden(true, animated: animated)
super.viewWillAppear(animated)
}
相關問題
- 1. 導航欄不顯示彈出框內
- 2. 導航欄上的導航欄
- 3. 導航欄上方的導航欄
- 4. 導航欄在導航欄上搜索
- 5. 導航欄上方的導航欄
- 6. 導航欄向上移動,同時導航控制器的彈出動畫
- 7. UISearchController ResultsController出現在導航欄上
- 8. 導航欄上的導航欄下拉引導程序
- 9. 未出現CSS導航欄
- 10. 導航欄不會滑出
- 11. 突出了導航欄
- 12. bootstrap導航欄不出現
- 13. 導航欄淡出菜單
- 14. 導航欄不出現
- 15. 側欄導航改爲導航欄中的頂部導航欄
- 16. 導航欄選項沒有出現總是導航欄
- 17. 導航欄品牌文本流出導航欄
- 18. 2導航欄,品牌上的一個導航欄
- 19. 2 moreNavigationController上的導航欄
- 20. UISearchBar以上導航欄
- 21. 導航欄上的href
- 22. inline-block在導航欄上
- 23. 標題上的導航欄?
- 24. 使ContainerView以上導航欄
- 25. iPad上的Bootstrap導航欄
- 26. Bootstrap導航欄:導航欄 - 右
- 27. IOS 7導航欄重疊導航欄
- 28. 主導航欄和垂直導航欄?
- 29. 彈出窗口視圖控制器中的導航欄樣式
- 30. 與UINavigationController/UITableViewController的彈出窗口裁剪導航欄
我認爲你是隱藏的導航欄在一些視圖控制器 – Smile
沒有我不是隱藏它 –
設置您的導航欄在viewWillAppear中() –