Tôi muốn đặt nền cho Navigation Bar là màu đen và tất cả các màu bên trong nó là màu trắng .
Vì vậy, tôi đã sử dụng mã này:
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],
NSForegroundColorAttributeName,
[UIColor whiteColor],
NSForegroundColorAttributeName,
[NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
NSForegroundColorAttributeName,
[UIFont fontWithName:@"Arial-Bold" size:0.0],
NSFontAttributeName,
nil]];
Nhưng màu văn bản nút quay lại , mũi tên và nút thanh vẫn có màu xanh mặc định .
Làm thế nào để thay đổi những màu sắc như trên hình ảnh dưới đây?