設置navigationController的title的顏色

在navigationController中,設置self.title = "個人主頁",那麼默認的顏色是黑色的。若是要自定義本身的顏色,設置titleTextAttributes屬性便可,在控制器中添加以下代碼。it

//iOS7.0以前使用UITextAttributeTextColor。iOS7.0丟棄了UITextAttributeTextColorio

NSDictionary *dic =  [NSDictionary dictionaryWithObject:[UIColor redColor] forKey:UITextAttributeTextColor];im

elf.navigationController.navigationBar.titleTextAttributes = dic;dict

//iOS7.0以後使用NSForegroundColorAttributeNameimg

NSDictionary *dic =  [NSDictionary dictionaryWithObject:[UIColor redColor] forKey:NSForegroundColorAttributeName];di

self.navigationController.navigationBar.titleTextAttributes = dic;vi

設置屬性後效果圖:顏色

相關文章
相關標籤/搜索