<?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>ObjectGraph Blog</title>
	<atom:link href="http://blog.objectgraph.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.objectgraph.com</link>
	<description>News and Info about projects and experiments @ objectgraph.com</description>
	<lastBuildDate>Sat, 20 Mar 2010 19:58:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>NSMutableDictionary Example &#8211; iPhone App Development Basics in Objective-C</title>
		<link>http://blog.objectgraph.com/index.php/2010/03/20/nsmutabledictionary-example-iphone-app-development-basics-in-objective-c/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/03/20/nsmutabledictionary-example-iphone-app-development-basics-in-objective-c/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 19:57:23 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1124</guid>
		<description><![CDATA[Here is a simple example to add elements in a dictionary and go through a for loop to extract values by keys.]]></description>
			<content:encoded><![CDATA[<p>Here is a simple example to add elements in a dictionary and go through a for loop to extract values by keys and make sure to release it whenever you finish using it.</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;">	<span style="color: #400080;">NSMutableDictionary</span> <span style="color: #002200;">*</span>dict <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSMutableDictionary</span> alloc<span style="color: #002200;">&#93;</span> init<span style="color: #002200;">&#93;</span>;
	<span style="color: #002200;">&#91;</span>dict setObject<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;John&quot;</span> forKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Firstname&quot;</span><span style="color: #002200;">&#93;</span>;
	<span style="color: #002200;">&#91;</span>dict setObject<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Doe&quot;</span> forKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Lastname&quot;</span><span style="color: #002200;">&#93;</span>;
	<span style="color: #002200;">&#91;</span>dict setObject<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;info at objectgraph.com&quot;</span> forKey<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Email&quot;</span><span style="color: #002200;">&#93;</span>;
&nbsp;
	NSLog<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;%@&quot;</span>, dict<span style="color: #002200;">&#41;</span>;
&nbsp;
	<span style="color: #400080;">NSArray</span> <span style="color: #002200;">*</span>keys <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>dict allKeys<span style="color: #002200;">&#93;</span>;
&nbsp;
	<span style="color: #11740a; font-style: italic;">// values in foreach loop</span>
	<span style="color: #a61390;">for</span> <span style="color: #002200;">&#40;</span><span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>key <span style="color: #a61390;">in</span> keys<span style="color: #002200;">&#41;</span> <span style="color: #002200;">&#123;</span>
		NSLog<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;%@ is %@&quot;</span>,key, <span style="color: #002200;">&#91;</span>dict objectForKey<span style="color: #002200;">:</span>key<span style="color: #002200;">&#93;</span><span style="color: #002200;">&#41;</span>;
	<span style="color: #002200;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/03/20/nsmutabledictionary-example-iphone-app-development-basics-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magnifier Free is #4 Overall in Japan App Store &#8211; 拡大鏡ズームが日本のiTunesで４位になりました</title>
		<link>http://blog.objectgraph.com/index.php/2010/03/11/magnifier-free-top-ranking-japan-app-store/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/03/11/magnifier-free-top-ranking-japan-app-store/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:46:04 +0000</pubDate>
		<dc:creator>gavi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[magnifier]]></category>
		<category><![CDATA[zoom]]></category>
		<category><![CDATA[ズーム]]></category>
		<category><![CDATA[リサイズ]]></category>
		<category><![CDATA[拡大鏡]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1110</guid>
		<description><![CDATA[Magnifier Free is #4 in Japan iTunes App Store. ]]></description>
			<content:encoded><![CDATA[<p>Our App Magnifier Free is at #4 of the overall Japanese market in iTunes App Store.<br />
<img class="alignnone size-full wp-image-1113" title="magnifier" src="http://blog.objectgraph.com/wp-content/uploads/2010/03/magnifier.png" alt="magnifier" width="600" height="190" /></p>
<p>[Japanese]</p>
<p>日本のiTunes で拡大鏡ズームが４位（カテゴリランキング１位）になりました！</p>
<p>小さい字を大きくしたり、遠くの物を拡大したりできます。また、とった写真に矢印や◯などの印が追加出きます。</p>
<p>You can download it for free on the app store</p>
<p><a href="http://itunes.apple.com/us/app/magnifier-free/id339121423?mt=8"><img src="http://www.iappphone.com/static/plain/images/appstore.png"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/03/11/magnifier-free-top-ranking-japan-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[iPhone App] St. Patrick&#8217;s Day Photo Free Released</title>
		<link>http://blog.objectgraph.com/index.php/2010/03/07/iphone-app-st-patricks-day-photo-free-released/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/03/07/iphone-app-st-patricks-day-photo-free-released/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 21:23:15 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[clover]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[gold]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[greeting]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[irish]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[rainbow]]></category>
		<category><![CDATA[sharmrock]]></category>
		<category><![CDATA[st. patricks]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1091</guid>
		<description><![CDATA[We launched a fun app for St. Patrick&#8217;s Day.

Click here to download now!

Our office is located in Manhattan and we watched St. Patrick&#8217;s day parade for a couple of times. Then, we got an idea to create an app for greetings via email / twitter / facebook with your own photo + shamrock + green [...]]]></description>
			<content:encoded><![CDATA[<p>We launched a fun app for St. Patrick&#8217;s Day.</p>
<p><a href="http://www.iappphone.com/apps/353406595/st-patricks-day-photo-free/download/"><img class="alignnone size-full wp-image-159" title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" /></a></p>
<p><a href="http://www.iappphone.com/apps/353406595/st-patricks-day-photo-free/download/">Click here to download now!</a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/03/st_patricks_day_photo_2.jpg"><img class="alignnone size-full wp-image-1097" title="st_patricks_day_photo_2" src="http://blog.objectgraph.com/wp-content/uploads/2010/03/st_patricks_day_photo_2.jpg" alt="st_patricks_day_photo_2" width="207" height="385" /></a></p>
<p>Our office is located in Manhattan and we watched St. Patrick&#8217;s day parade for a couple of times. Then, we got an idea to create an app for greetings via email / twitter / facebook with your own photo + shamrock + green beers!</p>
<div id="attachment_1095" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.objectgraph.com/wp-content/uploads/2010/03/st_patrick_irish_coffe.jpg"><img class="size-full wp-image-1095" title="st_patrick_irish_coffe" src="http://blog.objectgraph.com/wp-content/uploads/2010/03/st_patrick_irish_coffe.jpg" alt="Our Irish Coffee mug cup with green tea" width="300" height="400" /></a><p class="wp-caption-text">Our Irish Coffee mug cup with green tea @ 5th Avenue Office</p></div>
<p>There are more than 11 images of Green Effects.</p>
<p>[How to use]<br />
1. Select or take a photo<br />
2. Drag and drop one item from the top<br />
3. You can rotate or scale the item.<br />
4. Save and send it to your friends!</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/03/st_patricks_day_photo_4.jpg"><img class="alignnone size-full wp-image-1099" title="st_patricks_day_photo_4" src="http://blog.objectgraph.com/wp-content/uploads/2010/03/st_patricks_day_photo_4.jpg" alt="st_patricks_day_photo_4" width="207" height="385" /></a></p>
<p>[Features]<br />
-Use a Photo from your album<br />
-Take a picture<br />
-Transparency Adjustment</p>
<p>You can share your &#8220;work&#8221; via<br />
-Facebook<br />
-Twitter<br />
-Email<br />
-Save to your album</p>
<p>[User's Comment]<br />
&#8220;Cute&#8230; I like the images, easy to use. Thanks!!&#8221; &#8211; by Sonnysday</p>
<p><a href="http://www.iappphone.com/apps/353406595/st-patricks-day-photo-free/download/"><img title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" /></a></p>
<p><a href="http://www.iappphone.com/apps/353406595/st-patricks-day-photo-free/download/">Click  here to download now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/03/07/iphone-app-st-patricks-day-photo-free-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Afro Photo &#8211; iPhone App Updated!</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/26/afro-photo-iphone-app-updated/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/26/afro-photo-iphone-app-updated/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 05:35:03 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[afro]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[photo frame]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[wig]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1076</guid>
		<description><![CDATA[Our funkiest app was just updated with tons of new features! Turn your friends&#8217; hair  to afro and send the picture to them!

Resize the base image
Useful toolbar to manipulate the images
Twitter
Facebook
Email (in App)
10 Funky Photo Frames
Change the Transparency
&#8230; and + 13 Afro wig variations! It&#8217;s colorful now.



Click here to download Afro Photo Pro NOW!

This [...]]]></description>
			<content:encoded><![CDATA[<p>Our funkiest app was just updated with tons of new features! Turn your friends&#8217; hair  to afro and send the picture to them!</p>
<div id="attachment_1077" class="wp-caption alignnone" style="width: 330px"><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/sc1.png"><img class="size-full wp-image-1077 " title="Afro 1" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/sc1.png" alt="sc1" width="320" height="480" /></a><p class="wp-caption-text">Yeah! it&#39;s so colorful!</p></div>
<ul>
<li>Resize the base image</li>
<li>Useful toolbar to manipulate the images</li>
<li>Twitter</li>
<li>Facebook</li>
<li>Email (in App)</li>
<li>10 Funky Photo Frames</li>
<li>Change the Transparency</li>
<li>&#8230; and + 13 Afro wig variations! It&#8217;s colorful now.</li>
</ul>
<p><a href="http://www.iappphone.com/apps/323494403/-iafro/download/"><br />
</a></p>
<p><a href="http://www.iappphone.com/apps/323494403/-iafro/download/">Click here to download Afro Photo Pro NOW!</a></p>
<p><a href="http://www.iappphone.com/apps/323494403/-iafro/download/"><img class="alignnone size-full wp-image-159" title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" /></a></p>
<div id="attachment_1078" class="wp-caption alignnone" style="width: 330px"><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/sc2.png"><img class="size-full wp-image-1078 " title="Afro 2" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/sc2.png" alt="sc2" width="320" height="480" /></a><p class="wp-caption-text">Wig is too big?? No problem. We have side bar to rotate &amp; resize it.</p></div>
<div id="attachment_1079" class="wp-caption alignnone" style="width: 330px"><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/sc7.png"><img class="size-full wp-image-1079" title="Funky Photo Frame" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/sc7.png" alt="sc7" width="320" height="480" /></a><p class="wp-caption-text">Let&#39;s add a funky photo frame before drag your favorite afro wig.</p></div>
<p>This time, we have Free version without photo frames. <a href="http://bit.ly/6dZhxL">Check this out too!</a></p>
<p><a href="http://bit.ly/6dZhxL"><img class="alignnone size-full wp-image-159" title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/26/afro-photo-iphone-app-updated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[iPhone Development] How to Parse HTML</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/24/parsing-html-iphone-development/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/24/parsing-html-iphone-development/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:40:01 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[iphone development]]></category>
		<category><![CDATA[hpple]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[parser]]></category>
		<category><![CDATA[scraping]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1060</guid>
		<description><![CDATA[A few weeks ago, I was looking for a simple parser for html in iPhone because I just need to scrape a couple of webpages to get the contents. I found a nice wrapper on this posting, and it&#8217;s called hpple. Simple steps to use the library.
 Include and Link libxml2

Expand Targets
Double Click on your [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I was looking for a simple parser for html in iPhone because I just need to scrape a couple of webpages to get the contents. I found a nice wrapper on this <a href="http://stackoverflow.com/questions/405749/parsing-html-on-the-iphone">posting</a>, and it&#8217;s called <a href="http://github.com/topfunky/hpple"><strong>hpple</strong></a>. Simple steps to use the library.</p>
<p><strong> Include and Link libxml2</strong></p>
<ol>
<li>Expand Targets</li>
<li>Double Click on your project name</li>
<li>Select All Configuration</li>
<li>Search for Header Search Path</li>
<li>Add this line below with recursive option

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;">$<span style="color: #002200;">&#123;</span>SDKROOT<span style="color: #002200;">&#125;</span><span style="color: #002200;">/</span>usr<span style="color: #002200;">/</span>include<span style="color: #002200;">/</span>libxml2</pre></div></div>

</li>
<li>Search for Other Linker Flag</li>
<li>Add this line below

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">-</span>lxml2</pre></div></div>

</li>
</ol>
<p>See screenshots below</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/html_include.png"><img class="alignnone size-full wp-image-1063" title="html_include" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/html_include.png" alt="html_include" width="500" height="207" /></a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/html_linking1.png"><img class="alignnone size-full wp-image-1065" title="html_linking" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/html_linking1.png" alt="html_linking" width="496" height="210" /></a></p>
<p><strong>Download Source Codes</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">git clone git://github.com/topfunky/hpple.git</pre></div></div>

<p>Then drag and drop following source codes</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;">TFHpple.h
TFHpple.m
TFHppleElement.h
TFHppleElement.m
XPathQuery.h
XPathQuery.m</pre></div></div>

<p>That&#8217;s it. Let&#8217;s write some codes.</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"> <span style="color: #11740a; font-style: italic;">// Don't forget</span>
 <span style="color: #11740a; font-style: italic;">// #import &quot;TFHpple.h&quot;</span>
 <span style="color: #400080;">NSData</span> <span style="color: #002200;">*</span>htmlData <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSString</span> stringWithContentsOfURL<span style="color: #002200;">:</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSURL</span> URLWithString<span style="color: #002200;">:</span> <span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;http://www.objectgraph.com/contact.html&quot;</span><span style="color: #002200;">&#93;</span><span style="color: #002200;">&#93;</span> dataUsingEncoding<span style="color: #002200;">:</span>NSUTF8StringEncoding<span style="color: #002200;">&#93;</span>;
 TFHpple <span style="color: #002200;">*</span>xpathParser <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>TFHpple alloc<span style="color: #002200;">&#93;</span> initWithHTMLData<span style="color: #002200;">:</span>htmlData<span style="color: #002200;">&#93;</span>;
 <span style="color: #400080;">NSArray</span> <span style="color: #002200;">*</span>elements  <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>xpathParser search<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;//h3&quot;</span><span style="color: #002200;">&#93;</span>; <span style="color: #11740a; font-style: italic;">// get the page title - this is xpath notation</span>
 TFHppleElement <span style="color: #002200;">*</span>element <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>elements objectAtIndex<span style="color: #002200;">:</span><span style="color: #2400d9;">0</span><span style="color: #002200;">&#93;</span>;
 <span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>myTitle <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span>element content<span style="color: #002200;">&#93;</span>;
 NSLog<span style="color: #002200;">&#40;</span>myTitle<span style="color: #002200;">&#41;</span>;
 <span style="color: #002200;">&#91;</span>xpathParser release<span style="color: #002200;">&#93;</span>;
 <span style="color: #002200;">&#91;</span>htmlData release<span style="color: #002200;">&#93;</span>;</pre></div></div>

<h4>XCode Project Download</h4>
<p>Donwnload the complete project file is <a href="http://blog.objectgraph.com/wp-content/uploads/2010/03/HtmlParserTest.zip">available here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/24/parsing-html-iphone-development/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to use SBJSON and TouchJSON</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/24/how-to-use-touch-json-and-sbjson/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/24/how-to-use-touch-json-and-sbjson/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 01:51:09 +0000</pubDate>
		<dc:creator>gavi</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1039</guid>
		<description><![CDATA[In this post I show how to use the two nice JSON libraries available for iPhone development ]]></description>
			<content:encoded><![CDATA[<p>We at ObjectGraph have mostly used SBJSON, An excellent library from Stig Brautaset which implements a strict JSON parser and generator in Objective-C. Recently we noticed others using TouchJSON and wanted to explore it to see if it offers any advantages over SBJSON.</p>
<p>There has been a good discussion on this subject on stackoverflow.com which can be read here.</p>
<p>http://stackoverflow.com/questions/286087/best-json-library-to-use-when-developing-an-iphone-application</p>
<p>I will show how to use each of these libraries to decode JSON code in this post.</p>
<p>Touch JSON:<br />
Include the following in your header</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #6e371a;">#import &quot;CJSONDeserializer.h&quot;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>twitterTrendsUrl<span style="color: #002200;">=</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;http://search.twitter.com/trends.json&quot;</span>;
<span style="color: #400080;">NSData</span> <span style="color: #002200;">*</span>flickrData<span style="color: #002200;">=</span>
<span style="color: #002200;">&#91;</span><span style="color: #400080;">NSData</span> dataWithContentsOfURL<span style="color: #002200;">:</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSURL</span> URLWithString<span style="color: #002200;">:</span>twitterTrendsUrl<span style="color: #002200;">&#93;</span><span style="color: #002200;">&#93;</span>;
<span style="color: #400080;">NSError</span> <span style="color: #002200;">*</span>theError <span style="color: #002200;">=</span> <span style="color: #a61390;">nil</span>;
<span style="color: #a61390;">id</span> theObject <span style="color: #002200;">=</span>
 <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>CJSONDeserializer deserializer<span style="color: #002200;">&#93;</span> deserialize<span style="color: #002200;">:</span>flickrData error<span style="color: #002200;">:&amp;</span>theError<span style="color: #002200;">&#93;</span>;
NSLog<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Error: %@&quot;</span>, theError<span style="color: #002200;">&#41;</span>;
NSLog<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;Result: %@&quot;</span>, theObject<span style="color: #002200;">&#41;</span>;</pre></div></div>

<p>SB JSON:</p>
<p>The thing i like about SBJSON is it adds functions directly into NSString to get NSDictionary or NSArray objects when deserializing JSON strings.</p>
<p>Start with including the following header</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #6e371a;">#import &quot;JSON.h&quot;</span></pre></div></div>

<p>Then you can simply use the following code</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>twitterTrendsUrl<span style="color: #002200;">=</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;http://search.twitter.com/trends.json&quot;</span>;
<span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>output<span style="color: #002200;">=</span>
<span style="color: #002200;">&#91;</span><span style="color: #400080;">NSString</span> stringWithContentsOfURL<span style="color: #002200;">:</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSURL</span> URLWithString<span style="color: #002200;">:</span>twitterTrendsUrl<span style="color: #002200;">&#93;</span><span style="color: #002200;">&#93;</span>;
<span style="color: #a61390;">id</span> theObject<span style="color: #002200;">=</span>	<span style="color: #002200;">&#91;</span>output JSONValue<span style="color: #002200;">&#93;</span>;
NSLog<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;%@&quot;</span>,theObject<span style="color: #002200;">&#41;</span>;</pre></div></div>

<p>Please remember <code>stringWithContentsOfURL</code> has been deprecated so I would not recommend using it. We also just include the entire source of the specific JSON library when building our apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/24/how-to-use-touch-json-and-sbjson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a badge on your iPhone App</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/20/how-to-add-a-badge-on-iphone-app/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/20/how-to-add-a-badge-on-iphone-app/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 20:29:48 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1032</guid>
		<description><![CDATA[Here is a simple tip to show a number on your app icon.]]></description>
			<content:encoded><![CDATA[<p>Here is a simple tip to show a number on your app icon. See an example screenshot below:</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/christmas_countdown_badge.png"><img class="alignnone size-full wp-image-1033" title="christmas_countdown_badge" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/christmas_countdown_badge.png" alt="christmas_countdown_badge" width="96" height="101" /></a></p>
<p>You can set this little number appears on the icon by using UIApplication class like below</p>

<div class="wp_syntax"><div class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #002200;">-</span> <span style="color: #002200;">&#40;</span><span style="color: #a61390;">void</span><span style="color: #002200;">&#41;</span>applicationDidFinishLaunching<span style="color: #002200;">:</span><span style="color: #002200;">&#40;</span>UIApplication <span style="color: #002200;">*</span><span style="color: #002200;">&#41;</span>application <span style="color: #002200;">&#123;</span>
    <span style="color: #11740a; font-style: italic;">//...</span>
    <span style="color: #002200;">&#91;</span>application setApplicationIconBadgeNumber<span style="color: #002200;">:</span><span style="color: #2400d9;">123</span><span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#125;</span></pre></div></div>

<p>Check out the app from this link:</p>
<p><a href="http://www.iappphone.com/apps/342722512/christmas-countdown-free-snow-globe-with-christmas-music/">Christmas Countdown Free</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/20/how-to-add-a-badge-on-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valentine Photo Free is featured in Japanese App Store</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/20/valentine-photo-free-is-featured-in-japanese-app-store/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/20/valentine-photo-free-is-featured-in-japanese-app-store/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 20:19:54 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[valentine]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1026</guid>
		<description><![CDATA[My friend told us that our app is featured in Japanese App Store. Thank you for downloading our Photo App!
Download Valentine Photo Free:

]]></description>
			<content:encoded><![CDATA[<p>My friend told us that our app is featured in Japanese App Store. Thank you for downloading our Photo App!</p>
<p><a href="http://www.iappphone.com/apps/351112190/valentine-photo-free/">Download Valentine Photo Free:</a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/valentine_photo_itunes_jp_featured1.jpg"><img class="alignnone size-full wp-image-1028" title="valentine_photo_itunes_jp_featured" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/valentine_photo_itunes_jp_featured1.jpg" alt="valentine_photo_itunes_jp_featured" width="320" height="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/20/valentine-photo-free-is-featured-in-japanese-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use NSDateFormatter To Create A Countdown App On iPhone</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/18/use-nsdateformatter-to-create-a-countdown-app-on-iphone/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/18/use-nsdateformatter-to-create-a-countdown-app-on-iphone/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:00:32 +0000</pubDate>
		<dc:creator>gavi</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1003</guid>
		<description><![CDATA[Use NSDateFormatter to extract Date components and use it to build a count down App.]]></description>
			<content:encoded><![CDATA[<p>NSDateFormatter is excellent for date conversions in your iPhone App. We will use this to create a simple count down App. Here is core code using NSDateFormatter.</p>
<p>Remember that NSDate Object in Mac OSX and iPhone are different.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="objc" style="font-family:monospace;"><span style="color: #400080;">NSDate</span> <span style="color: #002200;">*</span>date<span style="color: #002200;">=</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSDate</span> date<span style="color: #002200;">&#93;</span>;
<span style="color: #a61390;">int</span> secondsNow<span style="color: #002200;">=</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">int</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#91;</span>date timeIntervalSince1970<span style="color: #002200;">&#93;</span>;
<span style="color: #400080;">NSDateFormatter</span> <span style="color: #002200;">*</span>formatter<span style="color: #002200;">=</span><span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSDateFormatter</span> alloc<span style="color: #002200;">&#93;</span> init<span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#91;</span>formatter setDateFormat<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;yyyy&quot;</span><span style="color: #002200;">&#93;</span>;
<span style="color: #a61390;">int</span> currentYear <span style="color: #002200;">=</span> <span style="color: #002200;">&#91;</span><span style="color: #002200;">&#91;</span>formatter stringFromDate<span style="color: #002200;">:</span>date<span style="color: #002200;">&#93;</span> intValue<span style="color: #002200;">&#93;</span>;
<span style="color: #a61390;">int</span> nextYear<span style="color: #002200;">=</span>currentYear<span style="color: #002200;">+</span><span style="color: #2400d9;">1</span>;
<span style="color: #400080;">NSString</span> <span style="color: #002200;">*</span>nextYearBegin<span style="color: #002200;">=</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSString</span> stringWithFormat<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;%d0101&quot;</span>,nextYear<span style="color: #002200;">&#93;</span>;
<span style="color: #002200;">&#91;</span>formatter setDateFormat<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;yyyyMMdd&quot;</span><span style="color: #002200;">&#93;</span>;
<span style="color: #400080;">NSDate</span> <span style="color: #002200;">*</span>otherDate<span style="color: #002200;">=</span><span style="color: #002200;">&#91;</span>formatter dateFromString<span style="color: #002200;">:</span>nextYearBegin<span style="color: #002200;">&#93;</span>;
NSLog<span style="color: #002200;">&#40;</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;%@&quot;</span>,<span style="color: #002200;">&#91;</span>otherDate description<span style="color: #002200;">&#93;</span><span style="color: #002200;">&#41;</span>;
<span style="color: #a61390;">int</span> secondsTarget<span style="color: #002200;">=</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">int</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#91;</span>otherDate timeIntervalSince1970<span style="color: #002200;">&#93;</span>;
<span style="color: #a61390;">int</span> differenceSeconds<span style="color: #002200;">=</span>secondsTarget<span style="color: #002200;">-</span>secondsNow;
<span style="color: #a61390;">int</span> days<span style="color: #002200;">=</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">int</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#40;</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">double</span><span style="color: #002200;">&#41;</span>differenceSeconds<span style="color: #002200;">/</span><span style="color: #002200;">&#40;</span><span style="color: #2400d9;">3600.0</span><span style="color: #002200;">*</span><span style="color: #2400d9;">24.00</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#41;</span>;
<span style="color: #a61390;">int</span> diffDay<span style="color: #002200;">=</span>differenceSeconds<span style="color: #002200;">-</span><span style="color: #002200;">&#40;</span>days<span style="color: #002200;">*</span><span style="color: #2400d9;">3600</span><span style="color: #002200;">*</span><span style="color: #2400d9;">24</span><span style="color: #002200;">&#41;</span>;
<span style="color: #a61390;">int</span> hours<span style="color: #002200;">=</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">int</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#40;</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">double</span><span style="color: #002200;">&#41;</span>diffDay<span style="color: #002200;">/</span><span style="color: #2400d9;">3600.00</span><span style="color: #002200;">&#41;</span>;
<span style="color: #a61390;">int</span> diffMin<span style="color: #002200;">=</span>diffDay<span style="color: #002200;">-</span><span style="color: #002200;">&#40;</span>hours<span style="color: #002200;">*</span><span style="color: #2400d9;">3600</span><span style="color: #002200;">&#41;</span>;
<span style="color: #a61390;">int</span> minutes<span style="color: #002200;">=</span><span style="color: #002200;">&#40;</span><span style="color: #a61390;">int</span><span style="color: #002200;">&#41;</span><span style="color: #002200;">&#40;</span>diffMin<span style="color: #002200;">/</span><span style="color: #2400d9;">60.0</span><span style="color: #002200;">&#41;</span>;
<span style="color: #a61390;">int</span> seconds<span style="color: #002200;">=</span>diffMin<span style="color: #002200;">-</span><span style="color: #002200;">&#40;</span>minutes<span style="color: #002200;">*</span><span style="color: #2400d9;">60</span><span style="color: #002200;">&#41;</span>;
mDateTime.text<span style="color: #002200;">=</span><span style="color: #002200;">&#91;</span><span style="color: #400080;">NSString</span> stringWithFormat<span style="color: #002200;">:</span><span style="color: #bf1d1a;">@</span><span style="color: #bf1d1a;">&quot;%d Days %d Hours %d Minutes %d Seconds&quot;</span>,days,hours,minutes,seconds<span style="color: #002200;">&#93;</span>;</pre></td></tr></table></div>

<p>All the above code does is calculates the number of days, hours, minutes and seconds left for the upcoming new year of the current year.<br />
Line 1 will get you the current date object with current date and time. Then i use a NSDateFormatter to extract the year dynamically and figure out what the next year is. Then i use NSDateFormatter again to get a corresponding<br />
 date object for January 1st of the next year.</p>
<p>Then some simple math to determine number days, hours, minutes and seconds. So using this code and a simple timer you can create a count down app to any date like Valentines day, Presidents Day or to your next vacation or birth day of your friend or spouse.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/18/use-nsdateformatter-to-create-a-countdown-app-on-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iSeismometer Published In A Technology Book</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/18/iseismometer-published-in-a-technology-book/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/18/iseismometer-published-in-a-technology-book/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 16:09:57 +0000</pubDate>
		<dc:creator>gavi</dc:creator>
				<category><![CDATA[iSeismometer]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[publish]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=1004</guid>
		<description><![CDATA[Today a friend of mine discovered a book while browsing the local Barnes and Noble, which contained a review of our app iSeismometer.
The book is called &#8220;Independent Guide To The iPhone 3Gs&#8221; by Nik Rawlinson

Link to Amazon:
http://www.amazon.co.uk/Independent-Guide-iPhone-3GS-Rawlinson/dp/1906372780
Here is a screenshot of the actual page from my Friend

Here is the review text from what i could [...]]]></description>
			<content:encoded><![CDATA[<p>Today a friend of mine discovered a book while browsing the local Barnes and Noble, which contained a review of our app iSeismometer.</p>
<p>The book is called &#8220;Independent Guide To The iPhone 3Gs&#8221; by Nik Rawlinson</p>
<p><img src="http://blog.objectgraph.com/wp-content/uploads/2010/02/Screen-shot-2010-02-18-at-11.02.23-AM.png" alt="Screen shot 2010-02-18 at 11.02.23 AM" title="Screen shot 2010-02-18 at 11.02.23 AM" width="306" height="427" class="alignnone size-full wp-image-1006" /></p>
<p>Link to Amazon:</p>
<p><a href="http://www.amazon.co.uk/Independent-Guide-iPhone-3GS-Rawlinson/dp/1906372780" target="_blank">http://www.amazon.co.uk/Independent-Guide-iPhone-3GS-Rawlinson/dp/1906372780</a><br />
Here is a screenshot of the actual page from my Friend</p>
<p><img src="http://blog.objectgraph.com/wp-content/uploads/2010/02/iseismo_book.jpg" alt="iseismo_book" title="iseismo_book" width="604" height="453" class="alignnone size-full wp-image-1007" /></p>
<p>Here is the review text from what i could read from the image above:</p>
<p>&#8220;This is a novelty app but one that also helps you learn something new. The concept is simple. You just leave tour iPhone on  hard surface with the app fired up then tap somewhere nearby and watch what happens.</p>
<p>It looks like something you&#8217;d find in a hospital, but it&#8217;s one of those things that is very captivating once you&#8217;ve looked at it once. In fact, we completely lost track of time when we played with this app as we tried out different tap-based compositions &#8211; MTV had nothing on us during this review.</p>
<p>You&#8217;ve got the ability to pause the &#8216;recording&#8217; of movement around the iPhone, in addition to looking at colorful spectrum graph of what occurred in the three seconds prior to requesting that data.</p>
<p>We didn&#8217;t quite understand what the chart was showing us. But it looked pretty nonetheless and it&#8217;ll make you look über intelligent to anyone looking over your shoulder .</p>
<p>The app will monitor movement for 10 seconds and report back on the last three seconds of activity. You can then upload that data in snazzy graph format to the web for all to see. Old friends will probably think you&#8217;ve changed career.&#8221;</p>
<p>Obviously the reviewer did not understand the purpose of the app, but its fine <img src='http://blog.objectgraph.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  You can  <a href="http://itunes.apple.com/us/app/iseismometer/id304190739?mt=8">download</a> iSeismometer for Free on App Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/18/iseismometer-published-in-a-technology-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Medical App from Objectgraph &#8211; 添付文書 Lite</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/13/medical-app-from-objectgraph/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/13/medical-app-from-objectgraph/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 03:16:24 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=990</guid>
		<description><![CDATA[[English]
We&#8217;ve been releasing more than 76 apps since day 1 of Apple&#8217;s App Store. Our latest work is from a medical collaborative project with a Japanese Pharmacist, Hiro. He  is well known as a bag packer / pharmacist / IT guy. Last month, we started a project to create an app that looks up medicine [...]]]></description>
			<content:encoded><![CDATA[<p>[English]</p>
<p>We&#8217;ve been releasing more than 76 apps since day 1 of Apple&#8217;s App Store. Our latest work is from a medical collaborative project with a Japanese Pharmacist, <a href="http://www.horinaga.com/">Hiro</a>. He  is well known as a <a href="http://www.horinaga.com/?page_id=23">bag packer</a> / pharmacist / IT guy. Last month, we started a project to create an app that looks up medicine documentations via iPhone. There is a reference website from the Japanese government but accessing via iPhone&#8217;s Safari is pretty hard. Our solution is to get the medical documentation in 10 seconds. I&#8217;m sorry to say that this app is for Japanese only but if you have a chance to travel to Japan, you might need it. You can easily find it  because it&#8217;s #2 in the Medical category of iTunes Japan! Check out our websites:</p>
<p>(Japanese only)</p>
<p><a href="http://toyaku.com/">http://toyaku.com/</a></p>
<p><a href="http://kusuri.objectgraph.com/">http://kusuri.objectgraph.com/</a></p>
<p>[Japanese]</p>
<p>ObjectGraphとtoyaku.comのコラボレーションプロジェクト、第一弾はiPhoneで薬の添付文書が高速で検索出来る「添付文書Lite」です。シンプルで見やすい設計にしてあります。無料なので、気軽に試してみてください。薬剤師、医師、一般の薬を使われる方などから良いレビューを頂いています。パワーアップした有料版も近々リリース予定なので、リクエストがありましたら、このブログか、<a href="http://toyaku.com">toyaku.com</a>まにどうぞ。現在、ランキング２位（カテゴリー別）まで急上昇中です。</p>
<p><a href="http://toyaku.com/">http://toyaku.com/</a></p>
<p><a href="http://kusuri.objectgraph.com/">http://kusuri.objectgraph.com/</a></p>
<p><img class="alignnone" title="添付文章 Lite" src="http://kusuri.objectgraph.com/wp-content/uploads/2010/01/Picture-5.png" alt="" width="414" height="770" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/13/medical-app-from-objectgraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Ready for iPad Apps</title>
		<link>http://blog.objectgraph.com/index.php/2010/02/06/getting-ready-for-ipad-apps/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/02/06/getting-ready-for-ipad-apps/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 13:10:44 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=968</guid>
		<description><![CDATA[Hey Everyone,

A bunch of our apps will be available for <a href="http://www.apple.com/ipad/">iPad</a>!

We will give you extreme puzzle experience. 
<br/><br/><br/>
]]></description>
			<content:encoded><![CDATA[<p>Hey Everyone,</p>
<p>A bunch of our apps will be available for <a href="http://www.apple.com/ipad/">iPad</a>!</p>
<p>We will give you extreme puzzle experience. Watch these screenshots!</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/16935_594560174845_36407054_34771261_8214193_n.jpg"><img class="alignnone size-full wp-image-970" title="16935_594560174845_36407054_34771261_8214193_n" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/16935_594560174845_36407054_34771261_8214193_n.jpg" alt="16935_594560174845_36407054_34771261_8214193_n" width="474" height="604" /></a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/02/16935_594560234725_36407054_34771262_6859738_n1.jpg"><img class="alignnone size-full wp-image-972" title="16935_594560234725_36407054_34771262_6859738_n" src="http://blog.objectgraph.com/wp-content/uploads/2010/02/16935_594560234725_36407054_34771262_6859738_n1.jpg" alt="16935_594560234725_36407054_34771262_6859738_n" width="474" height="604" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/02/06/getting-ready-for-ipad-apps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[iPhone Apps] 2 FREE Valentine Apps from ObjectGraph</title>
		<link>http://blog.objectgraph.com/index.php/2010/01/24/iphone-apps-2-free-valentines-day-apps-from-objectgraph/</link>
		<comments>http://blog.objectgraph.com/index.php/2010/01/24/iphone-apps-2-free-valentines-day-apps-from-objectgraph/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 14:30:07 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[valentine's day]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=955</guid>
		<description><![CDATA[Hello, we are releasing two FREE apps for valentines: <a href="http://itunes.apple.com/us/app/yum-valentines-countdown/id350185328?mt=8">Yum Valentine's Day Countdown</a> and <a href="http://itunes.apple.com/us/app/valentine-photo-free/id351112190?mt=8">Valentine Photo Free</a>.
<a href="http://blog.objectgraph.com/wp-content/uploads/2010/01/Picture-11.png"></a><a href="http://blog.objectgraph.com/wp-content/uploads/2010/01/valentine_app_1.jpg"><img class="alignnone size-full wp-image-958" title="Picture 1" src="http://blog.objectgraph.com/wp-content/uploads/2010/01/valentine_app_1.jpg" alt="valentine's day  app" /></a>
<a href="http://blog.objectgraph.com/index.php/2010/01/24/iphone-apps-2-free-valentines-day-apps-from-objectgraph">Read more details</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://itunes.apple.com/us/app/valentine-photo-free/id351112190?mt=8">Download Valentine Photo Free</a></p>
<p><a href="http://itunes.apple.com/us/app/valentine-photo-free/id351112190?mt=8"><img class="alignnone size-full wp-image-159" title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" /></a></p>
<p>It&#8217;s been more than 1 year to collaborate with Studio Yumi. For coming February, we launched a lovely Valentine&#8217;s Day count down. When you start it, you will see falling snow flakes which are heart shape. Try to tilt your iPhone / iPod Touch, they change the direction.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/01/Picture-11.png"><img class="alignnone size-full wp-image-960" title="Picture 1" src="http://blog.objectgraph.com/wp-content/uploads/2010/01/Picture-11.png" alt="Picture 1" width="285" height="530" /></a></p>
<p>To cerebrate the Valentine&#8217;s Day, sending a nice photo might be a nice gift. Decorate your photo with pinky hearts and balloons.</p>
<p>My favorite photo effect is the heart shape clouds. Try to take / select  a photo with blue sky in the background, and drop it. You can create a  love message in the sky.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2010/01/Picture-3.png"><img class="alignnone size-full wp-image-957" title="Picture 3" src="http://blog.objectgraph.com/wp-content/uploads/2010/01/Picture-3.png" alt="Picture 3" width="279" height="518" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2010/01/24/iphone-apps-2-free-valentines-day-apps-from-objectgraph/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>4+ Our iPhone Apps are selected for the Apple Store&#8217;s Christmas Tree</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/24/4-our-iphone-apps-are-selected-for-the-apple-stores-christmas-tree/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/24/4-our-iphone-apps-are-selected-for-the-apple-stores-christmas-tree/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 23:57:11 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=943</guid>
		<description><![CDATA[Today, we visit the Apple Store in Manhasset (Long Island) and we found a christmas tree and we found a bunch of our apps !

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/7wpsu0MbHkw&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7wpsu0MbHkw&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>


<a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&#38;media=all&#38;page=1&#38;restrict=true&#38;startIndex=0&#38;term=ObjectGraph+LLC+Christmas">
</a>

<a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&#38;media=all&#38;page=1&#38;restrict=true&#38;startIndex=0&#38;term=ObjectGraph+LLC+Christmas">Snow Globe</a>

<a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755417625_36407054_34576670_6793388_n.jpg"><img class="alignnone size-full wp-image-949" title="18535_588755417625_36407054_34576670_6793388_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755417625_36407054_34576670_6793388_n.jpg" alt="18535_588755417625_36407054_34576670_6793388_n" width="300" /></a>

<a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&#38;media=all&#38;page=1&#38;restrict=true&#38;startIndex=0&#38;term=ObjectGraph+LLC+Christmas">
</a>

<a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&#38;media=all&#38;page=1&#38;restrict=true&#38;startIndex=0&#38;term=ObjectGraph+LLC+Christmas">Christmas Bell</a>

Thank you for downloading.

]]></description>
			<content:encoded><![CDATA[<p>Today, we visit an Apple Store in Manhasset (Long Island) and we found a christmas tree and we found a bunch of our apps !</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/7wpsu0MbHkw&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7wpsu0MbHkw&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas"><br />
</a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas">Snow Globe</a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755417625_36407054_34576670_6793388_n.jpg"><img class="alignnone size-full wp-image-949" title="18535_588755417625_36407054_34576670_6793388_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755417625_36407054_34576670_6793388_n.jpg" alt="18535_588755417625_36407054_34576670_6793388_n" width="300" /></a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas"><br />
</a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas">Christmas Bell</a></p>
<p>Thank you for downloading.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ccv1Kv9ZgBk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/ccv1Kv9ZgBk&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588756285885_36407054_34576688_1729556_n.jpg"><img class="alignnone size-full wp-image-944" title="18535_588756285885_36407054_34576688_1729556_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588756285885_36407054_34576688_1729556_n.jpg" alt="18535_588756285885_36407054_34576688_1729556_n" width="232" height="309" /></a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755906645_36407054_34576681_7552904_n.jpg"><img class="alignnone size-full wp-image-945" title="18535_588755906645_36407054_34576681_7552904_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755906645_36407054_34576681_7552904_n.jpg" alt="18535_588755906645_36407054_34576681_7552904_n" width="306" height="408" /></a></p>
<p>then we found a bunch of our apps !</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755722015_36407054_34576675_7659836_n.jpg"><img class="alignnone size-full wp-image-946" title="18535_588755722015_36407054_34576675_7659836_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755722015_36407054_34576675_7659836_n.jpg" alt="18535_588755722015_36407054_34576675_7659836_n" width="330" height="440" /></a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas">Christmas Card Match</a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755632195_36407054_34576673_2435372_n.jpg"><img class="alignnone size-full wp-image-947" title="18535_588755632195_36407054_34576673_2435372_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755632195_36407054_34576673_2435372_n.jpg" alt="18535_588755632195_36407054_34576673_2435372_n" width="342" height="455" /></a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas"><br />
</a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas">Christmas Sound Free</a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755547365_36407054_34576672_2616812_n.jpg"><img class="alignnone size-full wp-image-948" title="18535_588755547365_36407054_34576672_2616812_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755547365_36407054_34576672_2616812_n.jpg" alt="18535_588755547365_36407054_34576672_2616812_n" width="352" height="469" /></a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas"><br />
</a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas">Snow Globe</a></p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755417625_36407054_34576670_6793388_n.jpg"><img class="alignnone size-full wp-image-949" title="18535_588755417625_36407054_34576670_6793388_n" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/18535_588755417625_36407054_34576670_6793388_n.jpg" alt="18535_588755417625_36407054_34576670_6793388_n" width="367" height="489" /></a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas"><br />
</a></p>
<p><a href="http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?entity=software&amp;media=all&amp;page=1&amp;restrict=true&amp;startIndex=0&amp;term=ObjectGraph+LLC+Christmas">Christmas Bell</a></p>
<p>Thank you for downloading.</p>
<p>Merry Christmas!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/24/4-our-iphone-apps-are-selected-for-the-apple-stores-christmas-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[iPhone アプリ] クリスマス・サウンドがiTunesで1位になりました。- Christmas Sounds App is #1 in iTunes!</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/14/iphone-app-christmas-sounds-top-ranking-in-itunes/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/14/iphone-app-christmas-sounds-top-ranking-in-itunes/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 16:06:58 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=924</guid>
		<description><![CDATA[(Japanese)
<a href="http://itunes.apple.com/jp/app/christmas-sounds-music-free-merry/id342977714?mt=8">クリスマス・サウンド</a>アプリがiTunesで1位になりました！期間限定で無料です。お早めにどうぞ。<br/>
(English)
<a href="http://itunes.apple.com/us/app/christmas-sounds-music-free-merry/id342977714?mt=8">Our Christmas Sounds and Music app</a> is #1 in the Japanese iTunes App Store ! Download the app while it's available for free! This is a limited time offer.<br/>


<img class="alignnone" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/ChristmasJukebox.png" alt="" width="200" height="372" />

<a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/ranking_12_16.png"><img class="alignnone size-medium wp-image-928" title="TOP-in-itunes" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/ranking_12_16.png" alt="TOP-in-itunes" width="350"  /></a>]]></description>
			<content:encoded><![CDATA[<p>(Japanese)</p>
<p>その他、<a href="http://blog.objectgraph.com/index.php/2009/12/11/free-christmas-apps-from-objectgraph/">７つも無料アプリ</a>をリリースしているので、ダウンロードしてみてください。</p>
<p>(English)</p>
<p>We have <a href="http://blog.objectgraph.com/index.php/2009/12/11/free-christmas-apps-from-objectgraph/">7 more free apps</a> in the App Store. Get them all now!</p>
<p>特集されたブログなど / Picked up by</p>
<p><a href="http://ameblo.jp/shoukai-jp/entry-10410110228.html ">http://ameblo.jp/shoukai-jp/entry-10410110228.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/14/iphone-app-christmas-sounds-top-ranking-in-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[iPhone app アプリ] 奇妙な写真メーカー &#8211; Bizarre Comic Photo Free</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/12/iphone-app-%e3%82%a2%e3%83%97%e3%83%aa-%e5%a5%87%e5%a6%99%e3%81%aa%e5%86%99%e7%9c%9f%e3%83%a1%e3%83%bc%e3%82%ab%e3%83%bc-bizarre-comic-photo-free/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/12/iphone-app-%e3%82%a2%e3%83%97%e3%83%aa-%e5%a5%87%e5%a6%99%e3%81%aa%e5%86%99%e7%9c%9f%e3%83%a1%e3%83%bc%e3%82%ab%e3%83%bc-bizarre-comic-photo-free/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 15:06:27 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[bizarre]]></category>
		<category><![CDATA[comic]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=916</guid>
		<description><![CDATA[Hello,

We released an app for Japanese comic fan. I would like to write this blog entry in both English and Japanese.

[English]

Add Japanese style comic effects on your photo! Send your work to your friends! There are more than 120 images of effects. It's free and you can upload the picture to Twitter (Twitpic).

[Japanese]

奇妙なマンガ風の効果音を合成できる「奇妙な写真メーカー」です。

「ドドドドドドドドドド」や「ドッ　ギャーン」など心行くまで作ってください。使い方は簡単。写真を選んで、効果音を上のツールバーからドラッグ＆ドロップするだけ。作った作品は友達等に送ってください。

また、万が一カエルが空から振ってきた時に備えて「メメタァ」も完備。これでいつ何時遠距離型の敵から攻撃を受けても大丈夫です。

<a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/bizarre_photo.png"><img class="alignnone size-full wp-image-917" title="bizarre_photo" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/bizarre_photo.png" alt="bizarre_photo" width="300" height="221" /></a>
]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>We released an app for Japanese comic fan. I would like to write this blog entry in both English and Japanese.</p>
<p>[English]</p>
<p>Add Japanese style comic effects on your photo! Send your work to your friends! There are more than 120 images of effects. It&#8217;s free and you can upload the picture to Twitter (Twitpic).</p>
<p>[Japanese]</p>
<p>奇妙なマンガ風の効果音を合成できる「奇妙な写真メーカー」です。</p>
<p>「ドドドドドドドドドド」や「ドッ　ギャーン」など心行くまで作ってください。使い方は簡単。写真を選んで、効果音を上のツールバーからドラッグ＆ドロップするだけ。作った作品は友達等に送ってください。</p>
<p>また、万が一カエルが空から振ってきた時に備えて「メメタァ」も完備。これでいつ何時遠距離型の敵から攻撃を受けても大丈夫です。</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/bizarre_photo.png"><img class="alignnone size-full wp-image-917" title="bizarre_photo" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/bizarre_photo.png" alt="bizarre_photo" width="300" height="221" /></a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4gUhB1MlBPI&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/4gUhB1MlBPI&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Demo Movie</p>
<p><span>特集された記事など<br />
<a title="http://journal.mycom.co.jp/news/2009/12/11/029/index.html" dir="ltr" rel="nofollow" href="http://journal.mycom.co.jp/news/2009/12/11/029/index.html" target="_blank">http://journal.mycom.co.jp/news/2009/&#8230;</a><br />
<a title="http://www.macotakara.jp/blog/index.php?ID=5990" dir="ltr" rel="nofollow" href="http://www.macotakara.jp/blog/index.php?ID=5990" target="_blank">http://www.macotakara.jp/blog/index.p&#8230;</a></span></p>
<p>すでにアップロードしている人発見。クッチャクッチャ。<br />
<a title="http://www.mobypicture.com/user/c8pa/view/5737270" dir="ltr" rel="nofollow" href="http://www.mobypicture.com/user/c8pa/view/5737270" target="_blank">http://www.mobypicture.com/user/c8pa/&#8230;</a></p>
<p><img class="alignnone" src="http://img.mobypicture.com/df469a4d0ab92422e40614100b8d3646_view.jpg" alt="" width="320" height="480" /></p>
<p><a href="http://twitter.com/#search?q=http%3A%2F%2Fbit.ly%2F5CWpAo"><br />
</a></p>
<p><a href="http://twitter.com/#search?q=http%3A%2F%2Fbit.ly%2F5CWpAo">http://twitter.com/#search?q=http%3A%2F%2Fbit.ly%2F5CWpAo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/12/iphone-app-%e3%82%a2%e3%83%97%e3%83%aa-%e5%a5%87%e5%a6%99%e3%81%aa%e5%86%99%e7%9c%9f%e3%83%a1%e3%83%bc%e3%82%ab%e3%83%bc-bizarre-comic-photo-free/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Examples of UFO Sightings</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/11/ufo-sightings/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/11/ufo-sightings/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 16:09:26 +0000</pubDate>
		<dc:creator>gavi</dc:creator>
				<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=905</guid>
		<description><![CDATA[UFO Sightings examples from users of the iPhone App. Make your own. Download now 
<a href="http://itunes.apple.com/us/app/ufo-sightings-free/id342128360?mt=8"><img class="alignnone size-full wp-image-159" title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" />
</a>
]]></description>
			<content:encoded><![CDATA[<p>Here are some examples from Twitter users who created UFO Images using our UFO Sightings free app</p>
<p>From <a href="http://twitter.com/kyuntama">http://twitter.com/kyuntama</a></p>
<p><img class="alignnone size-full wp-image-906" title="UFO Example 1" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/4.png" alt="UFO Example 1" width="320" height="480" /></p>
<p>From <a href="http://twitter.com/RyThizz">http://twitter.com/RyThizz</a></p>
<p><img class="alignnone size-full wp-image-907" title="UFO Example 2" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/1.png" alt="UFO Example 2" width="320" height="480" /></p>
<p>From <a href="http://twitter.com/_maru">http://twitter.com/_maru</a></p>
<p><img class="alignnone size-full wp-image-908" title="UFO Example" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/2.png" alt="UFO Example" width="320" height="480" /></p>
<p>From <a href="http://twitter.com/topiphone">http://twitter.com/topiphone</a></p>
<p><img class="alignnone size-full wp-image-909" title="Another UFO" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/3.png" alt="Another UFO" width="320" height="480" /></p>
<p><img class="alignnone" title="ahiru" src="http://s3.amazonaws.com/twitpic/photos/full/51149019.png?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1261520848&amp;Signature=hYJIYTNBfCuaXiHYpRcovVAYhu8%3D" alt="" width="320" height="480" /></p>
<p><a href="http://twitpic.com/ugau3">http://twitpic.com/ugau3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/11/ufo-sightings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yum Christmas Countdown</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/11/yummys-christmas-countdown/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/11/yummys-christmas-countdown/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 03:38:50 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[countdown]]></category>
		<category><![CDATA[yummy]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=897</guid>
		<description><![CDATA[This is our app to collaborate with STUDIOYUMI. We are glad to announce that we release the app with her adorable character, Yummy. Check this out!

<a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_yummy.png"><img class="alignnone size-full wp-image-898" title="christmas_countdown_yummy" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_yummy.png" alt="christmas_countdown_yummy" width="200" height="372" /></a>

<a href="http://itunes.apple.com/us/app/yum-christmas-countdown/id342974961?mt=8">Click here to download Yum Christmas Countdown</a>

Go to the original blog post @ STUDIOYUMI

<a href="http://blog.livedoor.jp/studioyumi/archives/1143428.html">http://blog.livedoor.jp/studioyumi/archives/1143428.html</a>]]></description>
			<content:encoded><![CDATA[This is our app to collaborate with STUDIOYUMI. We are glad to announce that we release the app with her adorable character, Yummy. Check this out!

<a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_yummy.png"><img class="alignnone size-full wp-image-898" title="christmas_countdown_yummy" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_yummy.png" alt="christmas_countdown_yummy" width="200" height="372" /></a>

<a href="http://itunes.apple.com/us/app/yum-christmas-countdown/id342974961?mt=8">Click here to download Yum Christmas Countdown</a>

Go to the original blog post @ STUDIOYUMI

<a href="http://blog.livedoor.jp/studioyumi/archives/1143428.html">http://blog.livedoor.jp/studioyumi/archives/1143428.html</a>]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/11/yummys-christmas-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 Free Christmas Apps from ObjectGraph</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/11/free-christmas-apps-from-objectgraph/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/11/free-christmas-apps-from-objectgraph/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 03:29:13 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[santa]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=880</guid>
		<description><![CDATA[Can't wait for Christmas?

Here is a simple app that keep track how many days until Christmas. It's not only a countdown but it also plays a nice background music with the virtual Snow Globe. Watch how snow flakes react when you tilt your iPhone.

<a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_11.png"><img class="alignnone size-full wp-image-885" title="christmas_countdown_1" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_11.png" alt="christmas_countdown_1" width="200" height="372" /></a>

<a href="http://itunes.apple.com/us/app/christmas-countdown-free-snow/id342722512?mt=8">Click here to download Christmas Countdown</a>

<br/><br/>
]]></description>
			<content:encoded><![CDATA[<p>Can&#8217;t wait for Christmas?</p>
<p>Here is a simple app that keep track how many days until Christmas. It&#8217;s not only a countdown but it also plays a nice background music with the virtual Snow Globe. Watch how snow flakes react when you tilt your iPhone.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_11.png"><img class="alignnone size-full wp-image-885" title="christmas_countdown_1" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_countdown_11.png" alt="christmas_countdown_1" width="200" height="372" /></a></p>
<p><a href="http://itunes.apple.com/us/app/christmas-countdown-free-snow/id342722512?mt=8">Click here to download Christmas Countdown</a></p>
<p><br/><br/><br />
- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</p>
<p>Need to make noise for the party? Take it with you.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/ChristmasJukebox.png"><img class="alignnone size-full wp-image-886" title="ChristmasJukebox" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/ChristmasJukebox.png" alt="ChristmasJukebox" width="200" height="372" /></a></p>
<p><a href="http://itunes.apple.com/us/app/christmas-sounds-music-free-merry/id342977714?mt=8">Click here to download <strong>Christmas Sounds Free</strong></a></p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</p>
<p>Once you get ready to go Christmas party, try on Santa&#8217;s costume. There are many photo effects that help you to send seasonal greetings email. You can share eye-candy Christmas Photo via Twitter or Facebook.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_photo.png"><img class="alignnone size-full wp-image-887" title="christmas_photo" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_photo.png" alt="christmas_photo" width="200" height="372" /></a></p>
<p><a href="http://itunes.apple.com/us/app/christmas-photo-free/id343292909?mt=8">Click here to download <strong>Christmas Photo Free</strong></a></p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</p>
<p>As for this app, I got a hint from Salvation Army folks at Penn station. Just shake your iPhone and ring a bell.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/Screenshot-2009.11.26-18.29.05.png"><img class="alignnone size-full wp-image-888" title="Screenshot 2009.11.26 18.29.05" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/Screenshot-2009.11.26-18.29.05.png" alt="Screenshot 2009.11.26 18.29.05" width="200" height="300" /></a></p>
<p><a href="http://itunes.apple.com/us/app/christmas-bell-free/id342973107?mt=8">Click here to download <strong>Christmas Bell Free</strong></a></p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</p>
<p>Our traditional card match game available for free now. Watch those adorable icons.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_memory_match1.png"><img class="alignnone size-full wp-image-890" title="christmas_memory_match" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/christmas_memory_match1.png" alt="christmas_memory_match" width="200" height="372" /></a></p>
<p><a href="http://itunes.apple.com/us/app/christmas-memory-match-free/id336569786?mt=8">Click here to download <strong>Christmas Card Match Free</strong></a></p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/snow_globe_free.jpg"><img class="alignnone size-full wp-image-891" title="snow_globe_free" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/snow_globe_free.jpg" alt="snow_globe_free" width="200" height="300" /></a></p>
<p>Snow Globe came back with better animations. It&#8217;s more smooth, more snows, and free!</p>
<p><a href="http://itunes.apple.com/us/app/snow-globe-free/id340896153?mt=8">Click here to download<strong> Snow Globe Free</strong></a></p>
<p>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</p>
<p>P.S. Yesterday, I totally forgot to list this app.</p>
<p><a href="http://blog.objectgraph.com/wp-content/uploads/2009/12/santa_piano_free.png"><img class="alignnone size-full wp-image-914" title="santa_piano_free" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/santa_piano_free.png" alt="santa_piano_free" width="300" height="217" /></a></p>
<p>I thought that it&#8217;s a good idea to make a piano with Santa&#8217;s &#8220;Ho-Ho-Ho&#8221; voice; however, to be honest with you, it came out as a creepy piano. I made my friend laugh and he said, &#8220;This is good for Halloween season&#8221;. Anyway, it&#8217;s free too!</p>
<p><a href="http://itunes.apple.com/us/app/santa-piano-free-merry-christmas/id342972665?mt=8">Click here to download <strong>Santa Piano </strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/11/free-christmas-apps-from-objectgraph/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UFO Sightings for iPhone App</title>
		<link>http://blog.objectgraph.com/index.php/2009/12/10/ufo-sightings-for-iphone-app/</link>
		<comments>http://blog.objectgraph.com/index.php/2009/12/10/ufo-sightings-for-iphone-app/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 17:19:12 +0000</pubDate>
		<dc:creator>kiichi</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[sightings]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[U.F.O]]></category>

		<guid isPermaLink="false">http://blog.objectgraph.com/?p=862</guid>
		<description><![CDATA[Hello Everyone,

According to Reuters, UK ministry stopped looking for UFO because of the current economy. It seems they will save $73,000 per year.

This is a bad news for U.F.O fans but it might be a good news for iPhone users because I decided to create an UFO prank app that let you add flying saucers and aliens on your photo. Check this out.
<p style="text-align: center;"><img class="alignnone size-full wp-image-863" title="Screenshot 2009.11.22 20.13.10" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/Screenshot-2009.11.22-20.13.10.png" alt="Screenshot 2009.11.22 20.13.10" width="320" height="480" /></p>

You can get this app from here and it's <strong>FREE!</strong> for while. I promise to keep this for free until this recession is over or until U.K. ministry restart their research unit.


<a href="http://itunes.apple.com/us/app/ufo-sightings-free/id342128360?mt=8"><img class="alignnone size-full wp-image-159" title="App Store Download" src="http://blog.objectgraph.com/wp-content/uploads/2008/10/appstore.png" alt="App Store Download" width="190" height="62" />
</a>

<a href="http://itunes.apple.com/us/app/ufo-sightings-free/id342128360?mt=8">Click here to download UFO Sightings</a>

<br/><br/>

<a href="http://blog.objectgraph.com/index.php/2009/12/10/ufo-sightings-for-iphone-app/">Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>I also included an area 51 sign and a cow photo as their tradition . Enjoy!</p>
<p><img class="alignnone size-full wp-image-866" title="cow_item16_large" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/cow_item16_large.png" alt="cow_item16_large" width="180" height="169" /><img class="alignnone size-full wp-image-865" title="area_51_item15_large" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/area_51_item15_large.png" alt="area_51_item15_large" width="180" height="127" /></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/TC_zC-sfIvU&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/TC_zC-sfIvU&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Demo Movie</p>
<p>Today, I saw an article about strange lights in the sky&#8230; It&#8217;s interesting. I might add some lighting effects too. Do you have any requests to add? I&#8217;m happy to upgrade with crazy effects. Please add your requests / comment / rating in iTunes.</p>
<p style="text-align: center;"><img class="size-full wp-image-864 aligncenter" title="strange-light" src="http://blog.objectgraph.com/wp-content/uploads/2009/12/strange-light.png" alt="strange-light" width="300" height="283" /></p>
<p><em>&#8220;Anyone for some Arctic roll? Mystery as spiral blue light display hovers above Norway&#8221; &#8211; Mail Online<br />
</em></p>
<p><a href="http://www.dailymail.co.uk/news/worldnews/article-1234430/Mystery-spiral-blue-light-display-hovers-Norway.html">http://www.dailymail.co.uk/news/worldnews/article-1234430/Mystery-spiral-blue-light-display-hovers-Norway.html</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/lYvM68AtlbA&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/lYvM68AtlbA&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object><em></em></p>
<p><em>&#8220;After 50 years, UK ministry shuts down UFO unit&#8221;  &#8211; Reuters</em></p>
<p><a href="http://www.reuters.com/article/idUSTRE5B416X20091205">http://www.reuters.com/article/idUSTRE5B416X20091205</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.objectgraph.com/index.php/2009/12/10/ufo-sightings-for-iphone-app/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
