我想改變iOS 7中後退按鈕的顏色。現在有沒有辦法將整個應用程序中的所有導航項更改爲特定顏色?這就是我在一個視圖控制器截至目前:在整個應用程序中更改導航項目的顏色?
self.editButtonItem.tintColor = [UIColor whiteColor];
self.navigationItem.backBarButtonItem.tintColor = [UIColor whiteColor];
self.navigationController.navigationBarHidden = NO;
self.navigationController.navigationBar.barTintColor = [UIColor redColor];
self.navigationController.navigationBar.translucent = NO;
self.title = @"Inbox";
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor]};
我已經回答了類似的問題: http://stackoverflow.com/questions/18929864 /如何-DO-I-變化的導航條,顏色在-IOS-18934411分之7#18934411 – RFG