有沒有辦法隱藏UINavigationBar中的標題視圖?從UINavigationBar隱藏標題?
回答
於titleview是一個UIView:
titleview的 在當該 產品的頂部項目的導航欄的中心處顯示的自定義視圖。
@property(nonatomic, retain) UIView *titleView
所以我認爲你可以試試這個:在文檔描述
[titleView setHidden:YES];
self.navigationItem.titleView = [[UIView alloc] initWithFrame:CGRectZero]; self.title = @"Home";
設置爲零將不起作用: 如果該屬性值是零,導航當接收器是頂級項目時,項目的標題顯示在導航欄的中央。如果您將此屬性設置爲自定義標題,則會顯示它而不是標題。
沒有必要爲'self.title = @「Home」;'我不認爲它的部分, – 2013-08-10 16:25:27
它只是起作用。(self.title = @「home」)是不需要的。 – 2013-12-12 09:27:13
它保留了後退按鈕(如下回答:https://stackoverflow.com/a/23113326/1156575):另一種選擇
[self.navigationController.navigationBar setTitleTextAttributes:@{
NSForegroundColorAttributeName : [UIColor clearColor]
}];
對我來說是我的導航欄子類需要迅速解決辦法:
self.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.clearColor()]
有了明確顏色標題消失。作爲Josema描述,您還可以通過您的navigationcontroller訪問導航欄做到這一點:
self.navigationController!.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.clearColor()]
這是對我工作:
self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.clear]
- 1. UINavigationBar隱藏屬性問題
- 2. UIScrollView隱藏UINavigationBar
- 3. PresentViewController隱藏UINavigationBar的
- 4. UINavigationBar沒有隱藏
- 5. 隱藏UINavigationBar 3D touch
- 6. 如何隱藏uinavigationbar?
- 7. 隱藏UINavigationBar和狀態欄問題
- 8. 在ios中隱藏UINavigationBar的問題
- 9. 當iOS7中的標題太長時,隱藏UINavigationBar後退按鈕標題
- 10. 帶隱藏UINavigationBar的UISearchBar
- 11. 自動隱藏UINavigationBar和UIToolbar
- 12. 隱藏UIStatusBar /移動UINavigationBar
- 13. UICollection視圖隱藏UINavigationBar
- 14. UINavigationBar隱藏時提供activityViewController
- 15. UINavigationBar隱藏在狀態欄
- 16. 暫時隱藏UINavigationBar按鈕
- 17. UINavigationBar隱藏子視圖
- 18. 隱藏標題欄
- 19. UINavigationBar的標題
- 20. 從工具提示隱藏標題
- 21. 從Asciidoc/Asciidoctor的ToC隱藏標題
- 22. 如何爲UINavigationBar添加KVO隱藏/未隱藏?
- 23. 當屏幕被點擊時隱藏/取消隱藏UINavigationbar
- 24. 標題欄如何隱藏?
- 25. 隱藏TabLayoutPanel或TabPanel標題
- 26. jtable標題隱藏/無列
- 27. 使用jQuery隱藏標題
- 28. 隱藏WordPress頁面標題
- 29. 隱藏部分的標題
- 30. 隱藏標題文字(Wordpress)
什麼是,雖然子視圖? '[nc.navigationItem.titleView setHidden:YES];'不起作用... – 2010-10-28 13:52:34
如果將它設置爲nil,像這樣nc.navigationItem.titleView = nil? – MathieuF 2010-10-28 14:09:12
設置爲零作品! :)感謝 – 2010-11-01 12:34:08