<?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 Indie iPhone Development Blog</title>
	<atom:link href="http://blog.indieiphonedev.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.indieiphonedev.com</link>
	<description>The musings of an independent iPhone developer</description>
	<lastBuildDate>Fri, 23 Dec 2011 05:25:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How to test location and accelerometer functions from the comfort of your home by ravinder</title>
		<link>http://blog.indieiphonedev.com/2010/02/07/how-to-test-location-and-accelerometer-functions-from-the-comfort-of-your-home/comment-page-1/#comment-2826</link>
		<dc:creator>ravinder</dc:creator>
		<pubDate>Fri, 23 Dec 2011 05:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=123#comment-2826</guid>
		<description>thanks tim. its really helpful for me</description>
		<content:encoded><![CDATA[<p>thanks tim. its really helpful for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison chart of top GPS enabled running applications for the iPhone by Iphone Running Apps &#8211; What is New? &#124; UpBeat Workouts</title>
		<link>http://blog.indieiphonedev.com/2010/12/15/comparison-chart-of-top-gps-enabled-running-applications-for-the-iphone/comment-page-2/#comment-2450</link>
		<dc:creator>Iphone Running Apps &#8211; What is New? &#124; UpBeat Workouts</dc:creator>
		<pubDate>Sat, 29 Oct 2011 23:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=241#comment-2450</guid>
		<description>[...] For those of you who are interested in a well-researched comparison chart of the established GPS enabled running apps thank Tim Adam at Log Your Run for sharing his chart. [...]</description>
		<content:encoded><![CDATA[<p>[...] For those of you who are interested in a well-researched comparison chart of the established GPS enabled running apps thank Tim Adam at Log Your Run for sharing his chart. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison chart of top GPS enabled running applications for the iPhone by Jaclyn</title>
		<link>http://blog.indieiphonedev.com/2010/12/15/comparison-chart-of-top-gps-enabled-running-applications-for-the-iphone/comment-page-2/#comment-2157</link>
		<dc:creator>Jaclyn</dc:creator>
		<pubDate>Fri, 29 Jul 2011 18:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=241#comment-2157</guid>
		<description>Ooops, sorry, I didn&#039;t realize this was GPS enabled apps only.</description>
		<content:encoded><![CDATA[<p>Ooops, sorry, I didn&#8217;t realize this was GPS enabled apps only.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison chart of top GPS enabled running applications for the iPhone by Jaclyn</title>
		<link>http://blog.indieiphonedev.com/2010/12/15/comparison-chart-of-top-gps-enabled-running-applications-for-the-iphone/comment-page-2/#comment-2156</link>
		<dc:creator>Jaclyn</dc:creator>
		<pubDate>Fri, 29 Jul 2011 18:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=241#comment-2156</guid>
		<description>You should include the regular Nike + app to the chart.  It&#039;s free (other than buying the chip) with your iPhone or iPod).  It would be nice to see that broken out as well.</description>
		<content:encoded><![CDATA[<p>You should include the regular Nike + app to the chart.  It&#8217;s free (other than buying the chip) with your iPhone or iPod).  It would be nice to see that broken out as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting App from iPhone to Universal by Tim</title>
		<link>http://blog.indieiphonedev.com/2010/04/29/converting-app-from-iphone-to-universal/comment-page-1/#comment-1984</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 23 Jun 2011 04:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=194#comment-1984</guid>
		<description>You are correct - however - that macro does not exist in pre iOS 3.2 (first iOS after iPad launch).  The following is a more up to date way to check for iPad, which I am using now:

BOOL iPad = NO;
#ifdef UI_USER_INTERFACE_IDIOM
iPad = (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad);
#endif</description>
		<content:encoded><![CDATA[<p>You are correct &#8211; however &#8211; that macro does not exist in pre iOS 3.2 (first iOS after iPad launch).  The following is a more up to date way to check for iPad, which I am using now:</p>
<p>BOOL iPad = NO;<br />
#ifdef UI_USER_INTERFACE_IDIOM<br />
iPad = (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad);<br />
#endif</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting App from iPhone to Universal by bob</title>
		<link>http://blog.indieiphonedev.com/2010/04/29/converting-app-from-iphone-to-universal/comment-page-1/#comment-1983</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Thu, 23 Jun 2011 04:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=194#comment-1983</guid>
		<description>Have you heard of the macro UI_USER_INTERFACE_IDIOM()? you are duplicating its code</description>
		<content:encoded><![CDATA[<p>Have you heard of the macro UI_USER_INTERFACE_IDIOM()? you are duplicating its code</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison chart of top GPS enabled running applications for the iPhone by Tim</title>
		<link>http://blog.indieiphonedev.com/2010/12/15/comparison-chart-of-top-gps-enabled-running-applications-for-the-iphone/comment-page-2/#comment-1804</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 27 May 2011 03:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=241#comment-1804</guid>
		<description>You are most welcome to use the chart Sally.</description>
		<content:encoded><![CDATA[<p>You are most welcome to use the chart Sally.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison chart of top GPS enabled running applications for the iPhone by Sally Edwards</title>
		<link>http://blog.indieiphonedev.com/2010/12/15/comparison-chart-of-top-gps-enabled-running-applications-for-the-iphone/comment-page-2/#comment-1803</link>
		<dc:creator>Sally Edwards</dc:creator>
		<pubDate>Thu, 26 May 2011 22:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=241#comment-1803</guid>
		<description>Thanks, Tim for updating this chart. I have been asked by an iPhone magazine to write a review of the running apps - do I have your permission to use this chart and what credit do you want for it?
SALLY</description>
		<content:encoded><![CDATA[<p>Thanks, Tim for updating this chart. I have been asked by an iPhone magazine to write a review of the running apps &#8211; do I have your permission to use this chart and what credit do you want for it?<br />
SALLY</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison chart of top GPS enabled running applications for the iPhone by Sally Edwards</title>
		<link>http://blog.indieiphonedev.com/2010/12/15/comparison-chart-of-top-gps-enabled-running-applications-for-the-iphone/comment-page-2/#comment-1802</link>
		<dc:creator>Sally Edwards</dc:creator>
		<pubDate>Thu, 26 May 2011 22:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=241#comment-1802</guid>
		<description>Say, if you read this Steelie, will you please email me - I have a quick question about running apps:
sally.edwards@heartzones.com

thanks,
SALLY</description>
		<content:encoded><![CDATA[<p>Say, if you read this Steelie, will you please email me &#8211; I have a quick question about running apps:<br />
<a href="mailto:sally.edwards@heartzones.com">sally.edwards@heartzones.com</a></p>
<p>thanks,<br />
SALLY</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook crack down on &#8220;spammy&#8221; apps by Tim</title>
		<link>http://blog.indieiphonedev.com/2011/04/13/facebook-crack-down-on-spammy-apps/comment-page-2/#comment-1715</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 28 Apr 2011 23:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.indieiphonedev.com/?p=289#comment-1715</guid>
		<description>For people using the old LogYourRun Facebook app: You can now import your Facebook logged data into your LogYourRun account here:

http://apps.facebook.com/logyourrunph/</description>
		<content:encoded><![CDATA[<p>For people using the old LogYourRun Facebook app: You can now import your Facebook logged data into your LogYourRun account here:</p>
<p><a href="http://apps.facebook.com/logyourrunph/" rel="nofollow">http://apps.facebook.com/logyourrunph/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

