1. 程式人生 > >IOS修改Navigation Bar上的返回按鈕文本顏色,箭頭顏色以及導航欄按鈕的顏色

IOS修改Navigation Bar上的返回按鈕文本顏色,箭頭顏色以及導航欄按鈕的顏色

img attr .com add src hit con contain title

自從IOS7後UINavigationBar的一些屬性的行為發生了變化.你可以在下圖看到:

技術分享

現在,如果你要修改它們的顏色,用下面的代碼:

1 2 3 4 self.navigationController.navigationBar.barTintColor = [UIColor blackColor]; self.navigationController.navigationBar.tintColor = [UIColor whiteColor]; [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}];
self.navigationController.navigationBar.translucent = NO;

IOS修改Navigation Bar上的返回按鈕文本顏色,箭頭顏色以及導航欄按鈕的顏色