मैं चाहता हूं कि नेविगेशन बार के लिए पृष्ठभूमि काली हो और उसके अंदर के सभी रंग सफेद हों ।
इसलिए, मैंने इस कोड का उपयोग किया:
[[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]];
लेकिन बैक बटन टेक्स्ट कलर , एरो और बार बटन अभी भी डिफ़ॉल्ट ब्लू कलर है ।
नीचे दिए गए चित्र की तरह उन रंगों को कैसे बदलें?