iOS UINavigationController

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS UINavigationController相关的知识,希望对你有一定的参考价值。

 修改barbuttonItem背景色

// button item 背景色
[self.navigationController.navigationBar setTintColor:KM_COLOR_WHITE];
// 背景色
[self.navigationController.navigationBar setBarTintColor:KM_COLOR_NAVIGATION_BAR];

  

 设置 title 字体

// navigation bar title 字体颜色
UIColor * color = KM_COLOR_WHITE;
//这里我们设置的是颜色,还可以设置shadow等,具体可以参见api
NSDictionary * dict = [NSDictionary dictionaryWithObject:color forKey:NSForegroundColorAttributeName];
//大功告成
self.navigationController.navigationBar.titleTextAttributes = dict;

  

设计导航栏全透明

// 设置透明,需要先修改背景图片,之后可以通过背景颜色来处理
self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default) 
// 去掉底部分界线
self.navigationController?.navigationBar.shadowImage = UIImage()

  

以上是关于iOS UINavigationController的主要内容,如果未能解决你的问题,请参考以下文章

使用 UINavigationController 从另一个控制器更新或重新加载 UIViewController?

带有标签栏的 presentViewController

将 managedObjectContext 发送到 viewController 崩溃

如何正确关闭作为模式呈现的 UINavigationController?

ID:[...] 的 NSManagedObject 已失效

在 UINavigationController 中设置时图像不显示