<?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. Follow me on Twitter: @runmad</description>
	<lastBuildDate>Sat, 31 Mar 2012 14:00:45 +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 Next TTC: Behind the scenes by Rune Madsen</title>
		<link>http://runmad.com/blog/2011/06/next-ttc-behind-the-scenes/comment-page-1/#comment-11791</link>
		<dc:creator>Rune Madsen</dc:creator>
		<pubDate>Sat, 31 Mar 2012 14:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=395#comment-11791</guid>
		<description>Yes, all stops (16000 some thousand for Toronto) are stored locally and then looped through to find the closest stop. While it&#039;s thousands of operations, it&#039;s still fast.

Requesting vehicleLocations is a different thing, you still need to know what route you&#039;re needing the data for.</description>
		<content:encoded><![CDATA[<p>Yes, all stops (16000 some thousand for Toronto) are stored locally and then looped through to find the closest stop. While it&#8217;s thousands of operations, it&#8217;s still fast.</p>
<p>Requesting vehicleLocations is a different thing, you still need to know what route you&#8217;re needing the data for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Next TTC: Behind the scenes by Merch Visoiu</title>
		<link>http://runmad.com/blog/2011/06/next-ttc-behind-the-scenes/comment-page-1/#comment-11788</link>
		<dc:creator>Merch Visoiu</dc:creator>
		<pubDate>Sat, 31 Mar 2012 08:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=395#comment-11788</guid>
		<description>Can you please explain this sentence:

&quot;Once you have a user’s location, loop through all stops to find the nearest stop and request the data for that stop.&quot;

I have noticed that the nextbus.com API does not have a query where you can send it your latitude and longitude and receive a nearest stop or route. So are you just downloading ALL the stops and maybe caching them and then when you get a location you&#039;re doing trigonometry to find the nearest stop? This must be thousands of operations all involving square root calculations!

I like your Next TTC app and I submitted my own app using the nextbus API but it is not like yours--it uses the &quot;vehicleLocations&quot; command.</description>
		<content:encoded><![CDATA[<p>Can you please explain this sentence:</p>
<p>&#8220;Once you have a user’s location, loop through all stops to find the nearest stop and request the data for that stop.&#8221;</p>
<p>I have noticed that the nextbus.com API does not have a query where you can send it your latitude and longitude and receive a nearest stop or route. So are you just downloading ALL the stops and maybe caching them and then when you get a location you&#8217;re doing trigonometry to find the nearest stop? This must be thousands of operations all involving square root calculations!</p>
<p>I like your Next TTC app and I submitted my own app using the nextbus API but it is not like yours&#8211;it uses the &#8220;vehicleLocations&#8221; command.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UITabBarController and UIActionSheet &#8211; 65% less hit point! by EeKay</title>
		<link>http://runmad.com/blog/2010/04/uitabbarcontroller-and-uiactionsheet-65-percent-less-hit-point/comment-page-1/#comment-11756</link>
		<dc:creator>EeKay</dc:creator>
		<pubDate>Wed, 28 Mar 2012 09:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=111#comment-11756</guid>
		<description>Nik&#039;s answer saved the day. I noticed the upsidedown issue and was looking for another way to display the actionsheet correctly.

[actionsheet showInView:self.tabBarController.view] did the tricky 

actually: 

myActionSheet.ShowInView(this.TabBarController.View); 

since i&#039;m using monotouch, but you get the point :)

thanks</description>
		<content:encoded><![CDATA[<p>Nik&#8217;s answer saved the day. I noticed the upsidedown issue and was looking for another way to display the actionsheet correctly.</p>
<p>[actionsheet showInView:self.tabBarController.view] did the tricky </p>
<p>actually: </p>
<p>myActionSheet.ShowInView(this.TabBarController.View); </p>
<p>since i&#8217;m using monotouch, but you get the point :)</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessibility on iOS: Working with VoiceOver support by vipul</title>
		<link>http://runmad.com/blog/2011/07/accessibility-on-ios-working-with-voiceover-support/comment-page-1/#comment-11746</link>
		<dc:creator>vipul</dc:creator>
		<pubDate>Mon, 26 Mar 2012 23:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=428#comment-11746</guid>
		<description>Hi,
I am using UIAccessibilityLabels in my application.
Problem I am facing is, when I add another view controller by addSubView method, voiceover catches labels on parent view in child view.
Also, when I hide the labels on view yet the voiceover reads those label.
Can you suggest me solution on these two problems ?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am using UIAccessibilityLabels in my application.<br />
Problem I am facing is, when I add another view controller by addSubView method, voiceover catches labels on parent view in child view.<br />
Also, when I hide the labels on view yet the voiceover reads those label.<br />
Can you suggest me solution on these two problems ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Colouring fun with moreNavigationController 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>Comment on Core Location presentation at TACOW by Dennis</title>
		<link>http://runmad.com/blog/2011/07/core-location-presentation-at-tacow/comment-page-1/#comment-8697</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Thu, 06 Oct 2011 23:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=424#comment-8697</guid>
		<description>Rune,

I was trying to download your CL  presentation but it says I need a newer version of Keynote. Would you be able to send it to me - or your notes -- in another format?

Dennis</description>
		<content:encoded><![CDATA[<p>Rune,</p>
<p>I was trying to download your CL  presentation but it says I need a newer version of Keynote. Would you be able to send it to me &#8211; or your notes &#8212; in another format?</p>
<p>Dennis</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessibility on iOS: Working with VoiceOver support by 모바일 접근성 관련 주요 가이드라인 등 &#8211; Henny Swan 블로깅 의역을 중심으로 &#171; 삐돌이의 웹 접근성 &#38; IT Transformation</title>
		<link>http://runmad.com/blog/2011/07/accessibility-on-ios-working-with-voiceover-support/comment-page-1/#comment-8171</link>
		<dc:creator>모바일 접근성 관련 주요 가이드라인 등 &#8211; Henny Swan 블로깅 의역을 중심으로 &#171; 삐돌이의 웹 접근성 &#38; IT Transformation</dc:creator>
		<pubDate>Wed, 14 Sep 2011 08:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=428#comment-8171</guid>
		<description>[...] 4-5. Accessibility on iOS: Working with VoiceOver support  [...]</description>
		<content:encoded><![CDATA[<p>[...] 4-5. Accessibility on iOS: Working with VoiceOver support  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some notes on UIView animation by storm tracker</title>
		<link>http://runmad.com/blog/2010/05/som-notes-on-uiview-animation/comment-page-1/#comment-7860</link>
		<dc:creator>storm tracker</dc:creator>
		<pubDate>Mon, 05 Sep 2011 03:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=175#comment-7860</guid>
		<description>Have you ever thought about writing an ebook or guest authoring on other blogs? I have a blog based on the same information you discuss and would love to have you share some stories/information. I know my audience would value your work. If you are even remotely interested, feel free to shoot me an email. Also, please take a look at my website http://blog.sina.com.cn/s/blog_8d5a7b7e0100uaxv.html</description>
		<content:encoded><![CDATA[<p>Have you ever thought about writing an ebook or guest authoring on other blogs? I have a blog based on the same information you discuss and would love to have you share some stories/information. I know my audience would value your work. If you are even remotely interested, feel free to shoot me an email. Also, please take a look at my website <a href="http://blog.sina.com.cn/s/blog_8d5a7b7e0100uaxv.html" rel="nofollow">http://blog.sina.com.cn/s/blog_8d5a7b7e0100uaxv.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some notes on UIView animation by Boris Bartkowiak</title>
		<link>http://runmad.com/blog/2010/05/som-notes-on-uiview-animation/comment-page-1/#comment-7774</link>
		<dc:creator>Boris Bartkowiak</dc:creator>
		<pubDate>Fri, 02 Sep 2011 06:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=175#comment-7774</guid>
		<description>Excellent blog you have here but I was curious about if you knew of any discussion boards that cover the same topics talked about in this article? I&#039;d really love to be a part of online community where I can get advice from other knowledgeable individuals that share the same interest. If you have any recommendations, please let me know. Cheers! Also, please check out my website http://irumbaimaakaaleswarar.com/photo/?level=picture&amp;id=2</description>
		<content:encoded><![CDATA[<p>Excellent blog you have here but I was curious about if you knew of any discussion boards that cover the same topics talked about in this article? I&#8217;d really love to be a part of online community where I can get advice from other knowledgeable individuals that share the same interest. If you have any recommendations, please let me know. Cheers! Also, please check out my website <a href="http://irumbaimaakaaleswarar.com/photo/?level=picture&#038;id=2" rel="nofollow">http://irumbaimaakaaleswarar.com/photo/?level=picture&#038;id=2</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessibility on iOS: Working with VoiceOver support by Web Axe</title>
		<link>http://runmad.com/blog/2011/07/accessibility-on-ios-working-with-voiceover-support/comment-page-1/#comment-6922</link>
		<dc:creator>Web Axe</dc:creator>
		<pubDate>Mon, 01 Aug 2011 18:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://runmad.com/blog/?p=428#comment-6922</guid>
		<description>Nice post, will tweet. PS: Highly suggest increasing the text size on your blog.</description>
		<content:encoded><![CDATA[<p>Nice post, will tweet. PS: Highly suggest increasing the text size on your blog.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

