iPhone SDK 3.0 in-app email - changing navigation bar tint color - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:47:45Z http://stackoverflow.com/feeds/question/1052130 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1052130/iphone-sdk-3-0-in-app-email-changing-navigation-bar-tint-color 6 iPhone SDK 3.0 in-app email - changing navigation bar tint color Mugunth Kumar 2009-06-27T04:46:07Z 2009-08-18T11:20:58Z <p>My App uses the iPhone SDK 3.0's new in-app email feature.</p> <p>I want to change the tint color of the email UI to black and make it translucent.</p> <p>I tried the following code,</p> <pre><code>/* picker.navigationController.navigationBar.tintColor = [UIColor blackColor]; picker.navigationController.navigationBar.translucent = YES ; */ </code></pre> <p>But it's changing the color of the view that creates,</p> <pre><code>MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; </code></pre> <p>the compose window, rather than the compose window itself.</p> <p>Is this atleast possible? Or should we stick to Apple provided blue itself???</p> http://stackoverflow.com/questions/1052130/iphone-sdk-3-0-in-app-email-changing-navigation-bar-tint-color/1053836#1053836 0 Answer by sieroaoj for iPhone SDK 3.0 in-app email - changing navigation bar tint color sieroaoj 2009-06-27T23:11:07Z 2009-06-27T23:11:07Z <p>Yes it is possible.</p> <p>Just add a objective-c category in the UINavigationBar class overriding the drawInRect Method. This way you can do want. </p> <p>The disadvantage, all your navigation bars will change :)</p> http://stackoverflow.com/questions/1052130/iphone-sdk-3-0-in-app-email-changing-navigation-bar-tint-color/1084721#1084721 1 Answer by swegi for iPhone SDK 3.0 in-app email - changing navigation bar tint color swegi 2009-07-05T20:02:00Z 2009-07-05T20:02:00Z <p>The <a href="http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/mobilehig/SpecialViews/SpecialViews.html#//apple%5Fref/doc/uid/TP40006556-CH10-SW1" rel="nofollow">iPhone Human Interface Guidelines</a> do not forbid to use custom colors but recommends the standard colors (blue and black).</p> http://stackoverflow.com/questions/1052130/iphone-sdk-3-0-in-app-email-changing-navigation-bar-tint-color/1293259#1293259 3 Answer by Aral Balkan for iPhone SDK 3.0 in-app email - changing navigation bar tint color Aral Balkan 2009-08-18T11:20:58Z 2009-08-18T11:20:58Z <p>Since the MFMailComposeViewController is a subclass of UINavigationController, simply do this:</p> <pre><code>[[picker navigationBar] setTintColor:[UIColor redColor]]; </code></pre>