Làm cách nào để thay đổi màu của văn bản trong UINavigationBar trên iOS 7? Tôi muốn nó trắng thay vì màu đen:Làm cách nào để thay đổi màu của văn bản trong UINavigationBar trên iOS 7?
Trả lời
Nếu bạn ok với một sự thay đổi toàn cầu, bạn có thể đặt điều này trong App ủy quyền của bạn:
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, nil];
[[UINavigationBar appearance] setTitleTextAttributes:attributes];
Tại sao cú pháp cũ? '@ {UITextAttributeTextColor: [UIColor whiteColor]}' –
UITextAttributeTextColor có vẻ không được chấp nhận trong iOS 7 –
Đối với iOS 7 và vv, sử dụng NSForegroundColorAttributeName thay vì UITextAttributeTextColor. –
Xem 'UINavigationBar textTitleAttributes' – rmaddy
tôi đã trả lời cho mọi thứ tương tự trước đây: http://stackoverflow.com/a/18934411/2796060 – RFG