<?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: +[NSDictionary dictionaryWithJSONString:]</title>
	<atom:link href="http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/feed/" rel="self" type="application/rss+xml" />
	<link>http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/</link>
	<description>If I could put reflection under this header, I would.</description>
	<pubDate>Wed, 07 Jan 2009 19:17:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Glenn Reschke</title>
		<link>http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/comment-page-1/#comment-24306</link>
		<dc:creator>Glenn Reschke</dc:creator>
		<pubDate>Sun, 10 Dec 2006 01:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/#comment-24306</guid>
		<description>One can never have too much good code! Thanks for this. I too had several instances where skipping white space by just scanning characters from the whitespaceAndNewline NSCharacterSet didn't work well either. Manual worked best for me too. I'm thinking obviously it'd be better if the automated scan were more auto-intelligent.</description>
		<content:encoded><![CDATA[<p>One can never have too much good code! Thanks for this. I too had several instances where skipping white space by just scanning characters from the whitespaceAndNewline NSCharacterSet didn&#8217;t work well either. Manual worked best for me too. I&#8217;m thinking obviously it&#8217;d be better if the automated scan were more auto-intelligent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Kurtz</title>
		<link>http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/comment-page-1/#comment-11410</link>
		<dc:creator>Daniel Kurtz</dc:creator>
		<pubDate>Sat, 26 Aug 2006 20:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/#comment-11410</guid>
		<description>Hey, I just stumbled upon this today. This is really an awesome little piece of code, and is working wonders for me. Before this I was hacking bad regexs to extract info from my json strings. You're a huge help. I'll be sure to give you credit once my project's done.</description>
		<content:encoded><![CDATA[<p>Hey, I just stumbled upon this today. This is really an awesome little piece of code, and is working wonders for me. Before this I was hacking bad regexs to extract info from my json strings. You&#8217;re a huge help. I&#8217;ll be sure to give you credit once my project&#8217;s done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Wight</title>
		<link>http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/comment-page-1/#comment-406</link>
		<dc:creator>Jonathan Wight</dc:creator>
		<pubDate>Wed, 08 Feb 2006 00:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/#comment-406</guid>
		<description>Yep, choice is good.

If you have any sample JSON dictionaries that you had trouble scanning whitespace with I'd be grateful to get a copy so I can add them to my test cases and/or fix any problems that come up.</description>
		<content:encoded><![CDATA[<p>Yep, choice is good.</p>
<p>If you have any sample JSON dictionaries that you had trouble scanning whitespace with I&#8217;d be grateful to get a copy so I can add them to my test cases and/or fix any problems that come up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blake</title>
		<link>http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/comment-page-1/#comment-405</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Tue, 07 Feb 2006 23:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/#comment-405</guid>
		<description>You can never have too much code! And I gotta give Buzz the credit - it was his idea and I think he started on some code, too. I'm eager to see how you did a few things in your code. (For example, I see that you skip white space by just scanning characters from the whitespaceAndNewline NSCharacterSet - there were several instances where this simply didn't work for me. I tried everything I could think of - including making sure that the spaces I was testing with were truly space characters. I switched the code so it used a more manual method and it seems to be working great.</description>
		<content:encoded><![CDATA[<p>You can never have too much code! And I gotta give Buzz the credit - it was his idea and I think he started on some code, too. I&#8217;m eager to see how you did a few things in your code. (For example, I see that you skip white space by just scanning characters from the whitespaceAndNewline NSCharacterSet - there were several instances where this simply didn&#8217;t work for me. I tried everything I could think of - including making sure that the spaces I was testing with were truly space characters. I switched the code so it used a more manual method and it seems to be working great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Wight</title>
		<link>http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/comment-page-1/#comment-404</link>
		<dc:creator>Jonathan Wight</dc:creator>
		<pubDate>Tue, 07 Feb 2006 22:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://blakeseely.com/blog/archives/2006/02/06/nsdictionary-dictionarywithjsonstring/#comment-404</guid>
		<description>Hey Blake,

Cool code! I've write some code to do the same thing late last year. You beat me putting it online though. http://toxicsoftware.com/blog/index.php/weblog/entry/cocoajson/</description>
		<content:encoded><![CDATA[<p>Hey Blake,</p>
<p>Cool code! I&#8217;ve write some code to do the same thing late last year. You beat me putting it online though. <a href="http://toxicsoftware.com/blog/index.php/weblog/entry/cocoajson/" rel="nofollow">http://toxicsoftware.com/blog/index.php/weblog/entry/cocoajson/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
