<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Colouring fun with moreNavigationController</title>
	<atom:link href="http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/feed/" rel="self" type="application/rss+xml" />
	<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/</link>
	<description>A blog about code, graphics, UI, marketing and whatever else interests me. Follow me on Twitter: @runmad</description>
	<lastBuildDate>Thu, 08 Dec 2011 08:14:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Tung Do</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-10266</link>
		<dc:creator>Tung Do</dc:creator>
		<pubDate>Thu, 08 Dec 2011 08:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-10266</guid>
		<description>Thanks, your tutorial is very clear.</description>
		<content:encoded><![CDATA[<p>Thanks, your tutorial is very clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-2759</link>
		<dc:creator>Emil</dc:creator>
		<pubDate>Tue, 08 Feb 2011 12:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-2759</guid>
		<description>Hi Rune!
Great tutorial. One question though:
I&#039;ve managed to change the background color of the tableview, but I can&#039;t figure out how to change the color of the text in the cells. Any ideas?</description>
		<content:encoded><![CDATA[<p>Hi Rune!<br />
Great tutorial. One question though:<br />
I&#8217;ve managed to change the background color of the tableview, but I can&#8217;t figure out how to change the color of the text in the cells. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rune Madsen</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-167</link>
		<dc:creator>Rune Madsen</dc:creator>
		<pubDate>Thu, 22 Jul 2010 01:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-167</guid>
		<description>You need to make your Application Delegate class adhere to the UITabBarController delegate methods. In your .h file write:
&lt;code&gt;
@interface AppDelegate_iPhone : NSObject &lt;UITabBarControllerDelegate&gt; {
&lt;/code&gt;
I&#039;ve included the other ones, since these are good to have.

Then in your .m file:

&lt;code&gt;
tabBarController = [[UITabBarController alloc] init];
tabBarController.delegate = self;
&lt;/code&gt;

Now that method is called. If you&#039;re ever in doubt why a delegate method isn&#039;t working, try setting a break point at it, and if there&#039;s no break when you think it should have been called, you&#039;ll know for sure that you have forgotten to make your class adhere to whatever object&#039;s delegate methods.

Hope that helps.</description>
		<content:encoded><![CDATA[<p>You need to make your Application Delegate class adhere to the UITabBarController delegate methods. In your .h file write:</p>
<div class="codesnip-container" >@interface AppDelegate_iPhone : NSObject <uitabbarcontrollerdelegate> {</uitabbarcontrollerdelegate></div>
<p>I&#8217;ve included the other ones, since these are good to have.</p>
<p>Then in your .m file:</p>
<div class="codesnip-container" >tabBarController = [[UITabBarController alloc] init];<br />
tabBarController.delegate = self;</div>
<p>Now that method is called. If you&#8217;re ever in doubt why a delegate method isn&#8217;t working, try setting a break point at it, and if there&#8217;s no break when you think it should have been called, you&#8217;ll know for sure that you have forgotten to make your class adhere to whatever object&#8217;s delegate methods.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-161</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Tue, 20 Jul 2010 06:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-161</guid>
		<description>I think I&#039;m missing something obvious

my .h looks like this

&lt;code&gt;
#import 

@interface AppDelegate_iPhone : NSObject  {
    UIWindow *window;
	UITabBarController *tabBarController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;

@end
&lt;/code&gt;

and my .m looks like this pieces

&lt;code&gt;

// ...

@synthesize tabBarController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

       // ...
	
	tabBarController = [[UITabBarController alloc] init];	
        tabBarController.viewControllers = [NSArray arrayWithObjects:
										navController1, 
										navController2, 
										navController3, nil];
	
    [window addSubview:[tabBarController view]];

    // ...

}

- (void)tabBarController:(UITabBarController *)tabBarController willBeginCustomizingViewControllers:(NSArray *)viewControllers {
    UIView *editView = [tabBarController.view.subviews objectAtIndex:1];
    UINavigationBar *modalNavBar = [editView.subviews objectAtIndex:0];
    modalNavBar.tintColor = [UIColor orangeColor];
}

&lt;/code&gt;

But it&#039;s still blue instead of orange.

Everything I&#039;ve read says this should work and it&#039;s not crashing the app.

Thanks for all the help :) Can you see anything obvious?</description>
		<content:encoded><![CDATA[<p>I think I&#8217;m missing something obvious</p>
<p>my .h looks like this</p>
<div class="codesnip-container" >#import </p>
<p>@interface AppDelegate_iPhone : NSObject  {<br />
    UIWindow *window;<br />
	UITabBarController *tabBarController;<br />
}</p>
<p>@property (nonatomic, retain) IBOutlet UIWindow *window;<br />
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;</p>
<p>@end</p></div>
<p>and my .m looks like this pieces</p>
<div class="codesnip-container" >// &#8230;</p>
<p>@synthesize tabBarController;</p>
<p>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    </p>
<p>       // &#8230;</p>
<p>	tabBarController = [[UITabBarController alloc] init];<br />
        tabBarController.viewControllers = [NSArray arrayWithObjects:<br />
										navController1,<br />
										navController2,<br />
										navController3, nil];</p>
<p>    [window addSubview:[tabBarController view]];</p>
<p>    // &#8230;</p>
<p>}</p>
<p>- (void)tabBarController:(UITabBarController *)tabBarController willBeginCustomizingViewControllers:(NSArray *)viewControllers {<br />
    UIView *editView = [tabBarController.view.subviews objectAtIndex:1];<br />
    UINavigationBar *modalNavBar = [editView.subviews objectAtIndex:0];<br />
    modalNavBar.tintColor = [UIColor orangeColor];<br />
}</p></div>
<p>But it&#8217;s still blue instead of orange.</p>
<p>Everything I&#8217;ve read says this should work and it&#8217;s not crashing the app.</p>
<p>Thanks for all the help :) Can you see anything obvious?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rune Madsen</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-159</link>
		<dc:creator>Rune Madsen</dc:creator>
		<pubDate>Mon, 19 Jul 2010 16:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-159</guid>
		<description>A quick Google search found this: http://stackoverflow.com/questions/2214613/how-to-conform-to-uitabbarcontrollerdelegate</description>
		<content:encoded><![CDATA[<p>A quick Google search found this: <a href="http://stackoverflow.com/questions/2214613/how-to-conform-to-uitabbarcontrollerdelegate" rel="nofollow">http://stackoverflow.com/questions/2214613/how-to-conform-to-uitabbarcontrollerdelegate</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-158</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Mon, 19 Jul 2010 15:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-158</guid>
		<description>Hey, I&#039;m really starting out.

How do you implement the UITabBarControllerDelegate in your App Delegate so that you can then add code to change the edit bar to orange?

Thanks</description>
		<content:encoded><![CDATA[<p>Hey, I&#8217;m really starting out.</p>
<p>How do you implement the UITabBarControllerDelegate in your App Delegate so that you can then add code to change the edit bar to orange?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-79</link>
		<dc:creator>Amir</dc:creator>
		<pubDate>Sun, 13 Jun 2010 01:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-79</guid>
		<description>Hi, thank you very much for such nice tutorial.
i am just trying to customize the “EDIT BUTTON” by adding the background image to that button.
Can you please guide me for that ?</description>
		<content:encoded><![CDATA[<p>Hi, thank you very much for such nice tutorial.<br />
i am just trying to customize the “EDIT BUTTON” by adding the background image to that button.<br />
Can you please guide me for that ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren</title>
		<link>http://runmad.com/blog/2010/01/coloring-fun-with-morenavigationcontroller-and-it/comment-page-1/#comment-4</link>
		<dc:creator>Darren</dc:creator>
		<pubDate>Sun, 10 Jan 2010 05:37:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=95#comment-4</guid>
		<description>Thanks for this great little tip! I&#039;ll be adding it my very next app.</description>
		<content:encoded><![CDATA[<p>Thanks for this great little tip! I&#8217;ll be adding it my very next app.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

