<?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: How To detect an internet connection with the iPhone SDK</title>
	<atom:link href="http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/</link>
	<description>the living internet</description>
	<lastBuildDate>Mon, 14 May 2012 13:25:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Syed</title>
		<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/comment-page-1/#comment-124775</link>
		<dc:creator>Syed</dc:creator>
		<pubDate>Tue, 13 Dec 2011 10:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://joshhighland.com/blog/?p=975#comment-124775</guid>
		<description>This code takes 30 seconds to check internet. Request you guys to put other code which check internet with in 10 seconds.</description>
		<content:encoded><![CDATA[<p>This code takes 30 seconds to check internet. Request you guys to put other code which check internet with in 10 seconds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Highland</title>
		<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/comment-page-1/#comment-31881</link>
		<dc:creator>Josh Highland</dc:creator>
		<pubDate>Thu, 17 Jun 2010 23:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://joshhighland.com/blog/?p=975#comment-31881</guid>
		<description>Yeah it will work over the cell signal. The iPhone does the translation for you. If you are doing a large transfer of data you will want to use the reachability class to see if you are connected to WIFI first. For pulling up webpages, or connecting to a REST service, you will be fine. check out &lt;a href=&quot;http://allseeing-i.com/ASIHTTPRequest/&quot; rel=&quot;nofollow&quot;&gt;ASIHTTPRequest&lt;/a&gt; for a good wrapper class for making data requests.</description>
		<content:encoded><![CDATA[<p>Yeah it will work over the cell signal. The iPhone does the translation for you. If you are doing a large transfer of data you will want to use the reachability class to see if you are connected to WIFI first. For pulling up webpages, or connecting to a REST service, you will be fine. check out <a href="http://allseeing-i.com/ASIHTTPRequest/" rel="nofollow">ASIHTTPRequest</a> for a good wrapper class for making data requests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/comment-page-1/#comment-31873</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Thu, 17 Jun 2010 23:04:12 +0000</pubDate>
		<guid isPermaLink="false">http://joshhighland.com/blog/?p=975#comment-31873</guid>
		<description>Josh, your comments are spot-on.  i&#039;ve jut tried your snippet with the 3.1.3 Snow Leopard SDk and it works fine.

i&#039;m new to this aspect of app coding and have a simple question.  my app needs to communicate over the Net using NSURL objects.  does this work over the Carrier Data Network?</description>
		<content:encoded><![CDATA[<p>Josh, your comments are spot-on.  i&#8217;ve jut tried your snippet with the 3.1.3 Snow Leopard SDk and it works fine.</p>
<p>i&#8217;m new to this aspect of app coding and have a simple question.  my app needs to communicate over the Net using NSURL objects.  does this work over the Carrier Data Network?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent</title>
		<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/comment-page-1/#comment-20243</link>
		<dc:creator>Brent</dc:creator>
		<pubDate>Thu, 25 Feb 2010 20:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://joshhighland.com/blog/?p=975#comment-20243</guid>
		<description>I&#039;m writing a corporate app using the iphone for delivery tracking. Is there a way to determine which wifi network I&#039;m connected to? We have both a public and private wifi. However, the webservice is only available via the private wifi. The reachability code will tell me when there&#039;s no connectivity, but I have to rely on the webservice call to fail in order to determine that they are not connected to the right network.</description>
		<content:encoded><![CDATA[<p>I&#8217;m writing a corporate app using the iphone for delivery tracking. Is there a way to determine which wifi network I&#8217;m connected to? We have both a public and private wifi. However, the webservice is only available via the private wifi. The reachability code will tell me when there&#8217;s no connectivity, but I have to rely on the webservice call to fail in order to determine that they are not connected to the right network.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/comment-page-1/#comment-14768</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Fri, 08 Jan 2010 00:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://joshhighland.com/blog/?p=975#comment-14768</guid>
		<description>Why is this so popular?  This is not correct.  Apple updated the Reachability class to 2.0 (you&#039;re referencing 1.5) which has been corrected.  Looking for information about the current version is difficult.

In the new version, there is no +sharedReachability method.</description>
		<content:encoded><![CDATA[<p>Why is this so popular?  This is not correct.  Apple updated the Reachability class to 2.0 (you&#8217;re referencing 1.5) which has been corrected.  Looking for information about the current version is difficult.</p>
<p>In the new version, there is no +sharedReachability method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Highland</title>
		<link>http://joshhighland.com/blog/2009/12/22/how-to-detect-an-internet-connection-with-the-iphone-sdk/comment-page-1/#comment-14772</link>
		<dc:creator>Josh Highland</dc:creator>
		<pubDate>Thu, 07 Jan 2010 22:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://joshhighland.com/blog/?p=975#comment-14772</guid>
		<description>No, I am referencing the 2.0 version, and the code i am displaying is working in my application.</description>
		<content:encoded><![CDATA[<p>No, I am referencing the 2.0 version, and the code i am displaying is working in my application.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching 3/10 queries in 0.004 seconds using disk: basic
Object Caching 327/327 objects using disk: basic
Content Delivery Network via Amazon Web Services: S3: joshhighland.com.s3.amazonaws.com

Served from: joshhighland.com @ 2012-05-21 07:03:06 -->
