iOS 中修改导航默认标题颜色、字体

来源:互联网 发布:mysql配置文件路径 编辑:程序博客网 时间:2024/06/05 18:30
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor], NSForegroundColorAttributeName : [UIFont boldSystemFontOfSize:18]};self.navigationItem.title = @"设置";
0 0