<?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: Iterating through NSDictionary</title>
	<atom:link href="http://foobarpig.com/iphone/iterating-through-nsdictionary.html/feed" rel="self" type="application/rss+xml" />
	<link>http://foobarpig.com/iphone/iterating-through-nsdictionary.html</link>
	<description>tasty bits and pieces from the swill of my code</description>
	<lastBuildDate>Thu, 26 Jan 2012 22:02:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: early childhood education salary</title>
		<link>http://foobarpig.com/iphone/iterating-through-nsdictionary.html/comment-page-1#comment-10281</link>
		<dc:creator>early childhood education salary</dc:creator>
		<pubDate>Mon, 04 Apr 2011 21:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://foobarpig.com/?p=113#comment-10281</guid>
		<description>you have got an ideal blog here! would you wish to make some invite posts on my weblog?</description>
		<content:encoded><![CDATA[<p>you have got an ideal blog here! would you wish to make some invite posts on my weblog?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://foobarpig.com/iphone/iterating-through-nsdictionary.html/comment-page-1#comment-7209</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Wed, 19 Jan 2011 02:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://foobarpig.com/?p=113#comment-7209</guid>
		<description>Or:

&lt;code&gt;
for( NSString *aKey in [bigUglyDictionary allKeys] )
{
    // do something
}
&lt;/code&gt;

Or somewhat faster:

&lt;code&gt;
for( NSString *aKey in bigUglyDictionary )
{
    // do something
}
&lt;/code&gt;


Or better yet, if your target OS supports blocks:
&lt;code&gt;
[bigUglyDictionary enumerateKeysAndObjectsUsingBlock: ^(id key, id obj, BOOL *stop) {
        // do something with key and obj
    }];
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Or:</p>
<p><code><br />
for( NSString *aKey in [bigUglyDictionary allKeys] )<br />
{<br />
    // do something<br />
}<br />
</code></p>
<p>Or somewhat faster:</p>
<p><code><br />
for( NSString *aKey in bigUglyDictionary )<br />
{<br />
    // do something<br />
}<br />
</code></p>
<p>Or better yet, if your target OS supports blocks:<br />
<code><br />
[bigUglyDictionary enumerateKeysAndObjectsUsingBlock: ^(id key, id obj, BOOL *stop) {<br />
        // do something with key and obj<br />
    }];<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riddhiman</title>
		<link>http://foobarpig.com/iphone/iterating-through-nsdictionary.html/comment-page-1#comment-5504</link>
		<dc:creator>Riddhiman</dc:creator>
		<pubDate>Tue, 28 Sep 2010 18:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://foobarpig.com/?p=113#comment-5504</guid>
		<description>thanks, very helpful</description>
		<content:encoded><![CDATA[<p>thanks, very helpful</p>
]]></content:encoded>
	</item>
</channel>
</rss>

