iOS-笔记 设置导航栏的样式

//设置导航栏字号大小及颜色
    [self.navigationController.navigationBar setTitleTextAttributes:
     
     @{NSFontAttributeName:[UIFont systemFontOfSize:17],
       
       NSForegroundColorAttributeName:[UIColor whiteColor]}];
//设置导航栏背景颜色
    self.navigationController.navigationBar.barTintColor =
[UIColor whiteColor]
;

 

posted @ 2015-12-08 16:57  指尖上跳跃的阳光  阅读(204)  评论(2编辑  收藏  举报