<?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>Daniele Demichelis &#187; objective-c</title>
	<atom:link href="http://www.danidemi.com/mainwww/tag/objective-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danidemi.com/mainwww</link>
	<description>There are 10 types of people in the world: Those who understand binary, and those who don&#039;t...</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:58:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Assert statement in Objective C</title>
		<link>http://www.danidemi.com/mainwww/2010/03/assert-statement-in-objective-c/</link>
		<comments>http://www.danidemi.com/mainwww/2010/03/assert-statement-in-objective-c/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:40:40 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=147</guid>
		<description><![CDATA[Hi, if you like to use assertions in your source code, but you miss this feature in ObjectiveC, give a look to this small class. Assert.h #import &#60;Foundation/Foundation.h&#62; @interface Assert : NSObject &#123; &#125; +&#40;void&#41;that:&#40;BOOL&#41;expr; @end Assert.m #import &#34;Assert.h&#34; @implementation &#8230; <a href="http://www.danidemi.com/mainwww/2010/03/assert-statement-in-objective-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2010/03/assert-statement-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chosing the number of decimal digits when printing a number with iPhone</title>
		<link>http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/</link>
		<comments>http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:39:59 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=67</guid>
		<description><![CDATA[This is a small snippet, useful whenever you want to convert a floating point number in a string with a fixed number of decimal digits. NSNumberFormatter *format = [NSNumberFormatter new]; [format setMaximumFractionDigits:1]; NSNumber *aNumber = [[NSNumber alloc ] initWithDouble:54.4235264]; NSString &#8230; <a href="http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/11/chosing-the-number-of-decimal-digits-when-printing-a-number-with-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: how to select a UITabBarItem programmatically</title>
		<link>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/</link>
		<comments>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 11:22:31 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[UIKit]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=61</guid>
		<description><![CDATA[I&#8217;m working to an iPhone application with a TabBar on the footer area. Among the others there are a &#8220;Home&#8221; button and an &#8220;Account&#8221; button. The first allows the user to see a view that gives an overview of the &#8230; <a href="http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Readonly computed properties in Objective-C</title>
		<link>http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/</link>
		<comments>http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 11:39:15 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=39</guid>
		<description><![CDATA[How to implement a read-only computed property in Objective-C <a href="http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.danidemi.com/mainwww/2009/11/readonly-computed-properties-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

