//改变导航栏标题颜色及字体大小 e.g设置字体颜色为red 字体大小为18
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor redColor],
NSFontAttributeName : [UIFont boldSystemFontOfSize:18]};
//改变导航栏返回按钮颜色
[self.navigationController.navigationBar setTintColor:[UIColor redColor]];
self.title = @"相关信息";
