<?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 for Rune&#039;s Blog</title>
	<atom:link href="http://runmad.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://runmad.com/blog</link>
	<description>A blog about code, graphics, UI, marketing and whatever else interests me</description>
	<lastBuildDate>Thu, 22 Jul 2010 01:17:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Colouring fun with moreNavigationController 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;/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  {</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>Comment on Colouring fun with moreNavigationController 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 <img src='http://runmad.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Can you see anything obvious?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Colouring fun with moreNavigationController 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>Comment on Colouring fun with moreNavigationController 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>Comment on UITabBarController and UIActionSheet &#8211; 65% less hit point! by Denis Osipov</title>
		<link>http://runmad.com/blog/2010/04/uitabbarcontroller-and-uiactionsheet-65-percent-less-hit-point/comment-page-1/#comment-138</link>
		<dc:creator>Denis Osipov</dc:creator>
		<pubDate>Wed, 14 Jul 2010 14:18:12 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=111#comment-138</guid>
		<description>You safe my day, thanks a lot! =)</description>
		<content:encoded><![CDATA[<p>You safe my day, thanks a lot! =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick guide to updating your app&#8217;s UI for iPhone 4 by Mark Johnson</title>
		<link>http://runmad.com/blog/2010/06/quick-guide-to-updating-your-apps-ui-for-iphone-4/comment-page-1/#comment-117</link>
		<dc:creator>Mark Johnson</dc:creator>
		<pubDate>Sun, 04 Jul 2010 22:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=198#comment-117</guid>
		<description>Here&#039;s my related notes on using UIScreen.scale to test at run-time for 2x graphics on iPhone 4 and iPad too: http://bit.ly/cLoTKz</description>
		<content:encoded><![CDATA[<p>Here&#8217;s my related notes on using UIScreen.scale to test at run-time for 2x graphics on iPhone 4 and iPad too: <a href="http://bit.ly/cLoTKz" rel="nofollow">http://bit.ly/cLoTKz</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick guide to updating your app&#8217;s UI for iPhone 4 by Rune Madsen</title>
		<link>http://runmad.com/blog/2010/06/quick-guide-to-updating-your-apps-ui-for-iphone-4/comment-page-1/#comment-89</link>
		<dc:creator>Rune Madsen</dc:creator>
		<pubDate>Wed, 23 Jun 2010 19:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=198#comment-89</guid>
		<description>It&#039;s works the same way. Using IB to set your images is like saying myImageView.image = [UIImage imageNamed:@&quot;image.png&quot;]; which the iPhone 4 would then automatically grab the higher res @2x version.</description>
		<content:encoded><![CDATA[<p>It&#8217;s works the same way. Using IB to set your images is like saying myImageView.image = [UIImage imageNamed:@"image.png"]; which the iPhone 4 would then automatically grab the higher res @2x version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick guide to updating your app&#8217;s UI for iPhone 4 by Brendan</title>
		<link>http://runmad.com/blog/2010/06/quick-guide-to-updating-your-apps-ui-for-iphone-4/comment-page-1/#comment-88</link>
		<dc:creator>Brendan</dc:creator>
		<pubDate>Wed, 23 Jun 2010 19:32:12 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=198#comment-88</guid>
		<description>What if you don&#039;t add images in code? I&#039;ve set button images in IB. Will just adding new @2x images to my resources work?</description>
		<content:encoded><![CDATA[<p>What if you don&#8217;t add images in code? I&#8217;ve set button images in IB. Will just adding new @2x images to my resources work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linking *directly* into your app&#039;s reviews in the App Store [UPDATED] by Rune Madsen</title>
		<link>http://runmad.com/blog/2010/01/linking-directly-into-your-apps-reviews-in-the-app-store/comment-page-1/#comment-81</link>
		<dc:creator>Rune Madsen</dc:creator>
		<pubDate>Sun, 13 Jun 2010 02:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=104#comment-81</guid>
		<description>Hi Dan. To my knowledge you cannot. I think it&#039;s actually good your users see what others write, because if they wanted to give your app a lower rating and see 4 and 5 stars, they&#039;re probably more inclined to give your app the same high rating. Also, the &quot;Write review&quot; is in the top anyway, so it&#039;s just one extra click away for them.</description>
		<content:encoded><![CDATA[<p>Hi Dan. To my knowledge you cannot. I think it&#8217;s actually good your users see what others write, because if they wanted to give your app a lower rating and see 4 and 5 stars, they&#8217;re probably more inclined to give your app the same high rating. Also, the &#8220;Write review&#8221; is in the top anyway, so it&#8217;s just one extra click away for them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linking *directly* into your app&#039;s reviews in the App Store [UPDATED] by Dan</title>
		<link>http://runmad.com/blog/2010/01/linking-directly-into-your-apps-reviews-in-the-app-store/comment-page-1/#comment-80</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sun, 13 Jun 2010 01:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.davesenior.com/rune/?p=104#comment-80</guid>
		<description>This works great on my app! Is it possible to go one step further and take you directly to the Write Review page?</description>
		<content:encoded><![CDATA[<p>This works great on my app! Is it possible to go one step further and take you directly to the Write Review page?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
