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


解決方法 1:

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

enter image description here

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

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;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM