<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog.sallarp.com &#187; iPhone</title>
	<atom:link href="http://blog.sallarp.com/category/development/iphonedevelopment/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sallarp.com</link>
	<description>Code, Code, Revolution!</description>
	<lastBuildDate>Sat, 14 Aug 2010 14:04:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPhone/iPad &#8211; AppStore like UIScrollView with paging and preview</title>
		<link>http://blog.sallarp.com/iphone-ipad-appstore-like-uiscrollview-with-paging-and-preview/</link>
		<comments>http://blog.sallarp.com/iphone-ipad-appstore-like-uiscrollview-with-paging-and-preview/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 18:29:45 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[UIScrollView]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=1016</guid>
		<description><![CDATA[Do you like the way application images are displayed in AppStore or the way Safari flips between tabs? This post contains a complete  horizontal, paged UIScrollView with preview control.
Alexander Repty posted a sample on his blog and my sample is based on his work. I&#8217;ve encapsulated the solution into one, easy to use, control and [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/iphone-ipad-appstore-like-uiscrollview-with-paging-and-preview/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhone/iPad &#8211; Wait for asynchronous tasks to complete</title>
		<link>http://blog.sallarp.com/iphone-ipad-wait-for-asynchronous-nsrunloop-task-to-complete/</link>
		<comments>http://blog.sallarp.com/iphone-ipad-wait-for-asynchronous-nsrunloop-task-to-complete/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 09:36:06 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=1009</guid>
		<description><![CDATA[Ever been in a situation where you need to wait for an asynchronous task to complete. This is a rare case but sometimes you need to do this. I used this techinque in my previous post on how to extract the user-agent string from a UIWebView. Check it out for a more complete sample.
The trick [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/iphone-ipad-wait-for-asynchronous-nsrunloop-task-to-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone/iPad &#8211; Get User-Agent for UIWebView</title>
		<link>http://blog.sallarp.com/iphone-ipad-get-user-agent-for-uiwebview/</link>
		<comments>http://blog.sallarp.com/iphone-ipad-get-user-agent-for-uiwebview/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 09:10:03 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=1003</guid>
		<description><![CDATA[In each new version of iOS the browser gets a new user-agent string. I&#8217;ve been searching for a way to get the user-agent string from the API but haven&#8217;t been able to find a straight forward way to do it. Here&#8217;s my solution:

BSWebViewUserAgent.h

#import &#60;Foundation/Foundation.h&#62;
&#160;
@interface BSWebViewUserAgent : NSObject &#60;UIWebViewDelegate&#62; {
	NSString *userAgent;
	UIWebView *webView;
}
@property (nonatomic, retain) NSString *userAgent;
-(NSString*)userAgentString;
@end

BSWebViewUserAgent.m

#import [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/iphone-ipad-get-user-agent-for-uiwebview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Android style unlock screen for iPhone apps using Quartz 2D</title>
		<link>http://blog.sallarp.com/android-style-unlock-screen-for-iphone-apps-using-quartz-2d/</link>
		<comments>http://blog.sallarp.com/android-style-unlock-screen-for-iphone-apps-using-quartz-2d/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 17:41:05 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective-C]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=956</guid>
		<description><![CDATA[I&#8217;m working on a new application that will be released on Appstore sometime soon and the full source will be posted on this blog, but I want to share a part of my application already.
I want to restrict access to my application using some kind of password and I really like the pattern style unlock [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/android-style-unlock-screen-for-iphone-apps-using-quartz-2d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DnBNor Eiendom joins the iPhone train with &#8220;Finn din Bolig&#8221;</title>
		<link>http://blog.sallarp.com/dnbnor-eiendom-joins-the-iphone-train-with-finn-din-bolig/</link>
		<comments>http://blog.sallarp.com/dnbnor-eiendom-joins-the-iphone-train-with-finn-din-bolig/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 17:01:45 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=931</guid>
		<description><![CDATA[DnBNor Eiendom, one of Norways largest real estate broker, joins the iPhone train today with the release of their location aware app &#8220;Finn din Bolig&#8220;. Building on the successful application &#8220;Hitta Hem&#8221; released by Svensk Fastighetsförmedling little over a year ago.
The application utilize the GPS functionality and finds homes, appartments and vaccation cabins for sale [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/dnbnor-eiendom-joins-the-iphone-train-with-finn-din-bolig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPhone OS 4 &#8211; Multitasking, improved mail and more!</title>
		<link>http://blog.sallarp.com/iphone-os-4-multitasking-improved-mail-and-more/</link>
		<comments>http://blog.sallarp.com/iphone-os-4-multitasking-improved-mail-and-more/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 19:32:07 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=926</guid>
		<description><![CDATA[Today Apple presented what will come later this summer, iPhone OS 4.0. Multitasking has been a long awaited and talked about feature that I&#8217;m not the only one being excited about, I was not so excited however to find out that it&#8217;s not supported on iPhone 3G! The new multitasking feature looks really neat and [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/iphone-os-4-multitasking-improved-mail-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad/iPhone forward geocoding API using Google gecoding service</title>
		<link>http://blog.sallarp.com/ipad-iphone-forward-geocoding-api-google/</link>
		<comments>http://blog.sallarp.com/ipad-iphone-forward-geocoding-api-google/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 22:09:37 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=833</guid>
		<description><![CDATA[The iPhone (and now iPad) SDK supports reverse geocoding out of the box. Reverse geocoding means you have a coordinate and want to find out where you are located, for instance, the name of the street you are on. Forward geocoding means you know the name of a location and want to find the coordinates. For [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/ipad-iphone-forward-geocoding-api-google/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 &#8211; iPhone ActiveSync issue</title>
		<link>http://blog.sallarp.com/exchange-2010-iphone-activesync-issue/</link>
		<comments>http://blog.sallarp.com/exchange-2010-iphone-activesync-issue/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 13:13:01 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=759</guid>
		<description><![CDATA[This week we finally got around to upgrade our old Exchange 2003 server, fortunately we waited a few extra months and skipped Exchange 2007 for 2010. The upgrade was handled by our friendly neighbor and also our new ISP: DGC. We did encounter one problem after the upgrade that I assume others will face as [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/exchange-2010-iphone-activesync-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spotify &#8211; Share your music, share your account!?</title>
		<link>http://blog.sallarp.com/iphone-spotify-share-account/</link>
		<comments>http://blog.sallarp.com/iphone-spotify-share-account/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 18:26:37 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=740</guid>
		<description><![CDATA[Spotify is an awesome app for the iPhone, however, you need a premium account. Or do you? Most users will probably use the off-line mode to avoid the sometimes overly expensive data plans. If you don&#8217;t want or need to stream music it turns out you really don&#8217;t need a premium account! At least not [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/iphone-spotify-share-account/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Spotify is now available on iTunes store!</title>
		<link>http://blog.sallarp.com/spotify-is-now-available-on-itunes-store/</link>
		<comments>http://blog.sallarp.com/spotify-is-now-available-on-itunes-store/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 05:29:27 +0000</pubDate>
		<dc:creator>Björn Sållarp</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.sallarp.com/?p=725</guid>
		<description><![CDATA[This time it&#8217;s actually there! Lots of confusion about a week ago when Spotify announced that it was available for iPhone when it in fact was just accepted by Apple. Early this morning it appeared on AppStore! Here&#8217;s a video showing off the application.

And here&#8217;s the proof that that the app really exist. Taken on [...]]]></description>
		<wfw:commentRss>http://blog.sallarp.com/spotify-is-now-available-on-itunes-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: blog.sallarp.com @ 2010-09-10 23:03:00 -->