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

  

posted on 2015-04-21 16:21  奋斗的虫虫  阅读(2107)  评论(0)    收藏  举报