<?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>TiMeister - Online Project Management Software &#187; iphone</title>
	<atom:link href="http://www.timeister.com/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timeister.com</link>
	<description>Online Project Management  Software</description>
	<lastBuildDate>Sun, 18 Jul 2010 20:28:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Objective C: Zoom and Pintch UIImageView</title>
		<link>http://www.timeister.com/2009/09/objective-c-zoom-image/</link>
		<comments>http://www.timeister.com/2009/09/objective-c-zoom-image/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:26:18 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[pintch]]></category>
		<category><![CDATA[uiimageview]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=465</guid>
		<description><![CDATA[To get started, we have to 1. Create a new project by selecting &#8220;Windows-based Application&#8221; 2. Create a new UIView using IB and name it ImgView. 3. Create a new file in XCode by selecting File -> New File -> UIViewController sub class and name it &#8220;ImgViewController&#8221;. 4. In IB, select File&#8217;s owner object of [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/09/objective-c-zoom-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C: Cache Image on iPhone</title>
		<link>http://www.timeister.com/2009/09/objective-c-cache-image/</link>
		<comments>http://www.timeister.com/2009/09/objective-c-cache-image/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:09:22 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objective c]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=458</guid>
		<description><![CDATA[If you&#8217;re pulling in web data such as images that doesn&#8217;t change but needs to be viewed multiple times, you&#8217;ll want to cache it. Caching images dramatically improves the performance of scrolling tables and other views. Note: this only works for JPG and PNG images. If you have suggestions or find bugs, let me know. [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/09/objective-c-cache-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C &#8211; HTTP POSTor GET Data</title>
		<link>http://www.timeister.com/2009/08/objective-c-http-post-get-data/</link>
		<comments>http://www.timeister.com/2009/08/objective-c-http-post-get-data/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 08:19:18 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[http get]]></category>
		<category><![CDATA[http post]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[sdk]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/2009/08/14/objective-c-http-postor-get-data/</guid>
		<description><![CDATA[ASIHTTPRequest is an easy to use wrapper around the CFNetwork API that makes some of the more tedious aspects of communicating with web servers easier. It is written in Objective-C and works in both Mac OS X and iPhone applications. It is suitable performing basic HTTP requests and interacting with REST-based services (GET / POST [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/08/objective-c-http-post-get-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Objective C: Read iPhone Preferences From Application</title>
		<link>http://www.timeister.com/2009/07/read-iphone-preferences/</link>
		<comments>http://www.timeister.com/2009/07/read-iphone-preferences/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 10:19:26 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objective c]]></category>
		<category><![CDATA[read preferences]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=420</guid>
		<description><![CDATA[You can read preferences from your iPhone Application using the NSUserDefaults class from iPhone SDK. Here is how you can read the delay value before the phone is starting to dial a number NSUserDefaults *userDefaults = &#91;NSUserDefaults standardUserDefaults&#93;; delayBeforeDialing = &#91;userDefaults floatForKey:@&#34;delayBeforeDialing&#34;&#93;; The key, “delayBeforeDialing” in this example, needs to match the Key value in [...]]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/07/read-iphone-preferences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective C Get iPhone Device GUID</title>
		<link>http://www.timeister.com/2009/06/objective-c-get-iphone-device-guid/</link>
		<comments>http://www.timeister.com/2009/06/objective-c-get-iphone-device-guid/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 13:37:59 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[device id]]></category>
		<category><![CDATA[guid]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=312</guid>
		<description><![CDATA[Following Xcode reveals you the device id &#160; UIDevice *device = &#91;UIDevice currentDevice&#93;; NSString *uniqueIdentifier = &#91;device uniqueIdentifier&#93;; /*[device release];*/ NSLog&#40;@&#34;Device GUID: %@&#34;, uniqueIdentifier&#41;;]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/06/objective-c-get-iphone-device-guid/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Objective C Get iPhone number</title>
		<link>http://www.timeister.com/2009/06/objective-c-get-iphone-number/</link>
		<comments>http://www.timeister.com/2009/06/objective-c-get-iphone-number/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 13:36:32 +0000</pubDate>
		<dc:creator>TiMeister Admin</dc:creator>
				<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://blog.timeister.com/?p=309</guid>
		<description><![CDATA[How to get the iphone number from sim using xcode or objective c? NSString *num = &#91;&#91;NSUserDefaults standardUserDefaults&#93; stringForKey:@&#34;SBFormattedPhoneNumber&#34;&#93;; &#160; NSLog&#40;@&#34;Phone Number: %@&#34;, num&#41;;&#60;/div&#62; That&#8217;s all!]]></description>
		<wfw:commentRss>http://www.timeister.com/2009/06/objective-c-get-iphone-number/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
