iPhone SDK 3.0 in-app email - changing navigation bar tint color - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T22:47:45Zhttp://stackoverflow.com/feeds/question/1052130http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1052130/iphone-sdk-3-0-in-app-email-changing-navigation-bar-tint-color6iPhone SDK 3.0 in-app email - changing navigation bar tint colorMugunth Kumar2009-06-27T04:46:07Z2009-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#10538360Answer by sieroaoj for iPhone SDK 3.0 in-app email - changing navigation bar tint colorsieroaoj2009-06-27T23:11:07Z2009-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#10847211Answer by swegi for iPhone SDK 3.0 in-app email - changing navigation bar tint colorswegi2009-07-05T20:02:00Z2009-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#12932593Answer by Aral Balkan for iPhone SDK 3.0 in-app email - changing navigation bar tint colorAral Balkan2009-08-18T11:20:58Z2009-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>