navigationBar及Tabbar相關

//按鈕的顏色
 [self.navigationBar setTintColor:[UIColor whiteColor]];

 //標題顏色
[self.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:16]}];

 //背景顏色
 self.navigationBar.barTintColor = [UIcolor red];
```
//  隱藏導航欄的返回鍵
self.navigationItem.hidesBackButton = YES;
self.navigationItem.leftBarButtonItem = nil;
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章