<?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 for iPhone Programming Tutorials</title>
	<atom:link href="http://www.icodeblog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icodeblog.com</link>
	<description>Conquering the mobile universe</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:30:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Simple Sqlite Database Interaction Using FMDB by Théo Papillon-Lignières</title>
		<link>http://www.icodeblog.com/2011/11/04/simple-sqlite-database-interaction-using-fmdb/#comment-9203</link>
		<dc:creator>Théo Papillon-Lignières</dc:creator>
		<pubDate>Thu, 09 Feb 2012 10:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.icodeblog.com/?p=3595#comment-9203</guid>
		<description>Hi,
I still have not find the solution =(</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I still have not find the solution =(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Integrate Google Analytics Tracking Into Your Apps In 7 Minutes by mxdanielon</title>
		<link>http://www.icodeblog.com/2010/04/22/how-to-integrate-google-analytics-tracking-into-your-apps-in-7-minutes/#comment-9200</link>
		<dc:creator>mxdanielon</dc:creator>
		<pubDate>Wed, 08 Feb 2012 19:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1906#comment-9200</guid>
		<description>Really apreciated! i&#039;m about to put it into an exportable project made with unity, but one of my co-worker told me that i need to add the import into AppController.mm instead of the Delegate. It worked for me, great tutorial!</description>
		<content:encoded><![CDATA[<p>Really apreciated! i&#8217;m about to put it into an exportable project made with unity, but one of my co-worker told me that i need to add the import into AppController.mm instead of the Delegate. It worked for me, great tutorial!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Asset Libraries and Blocks in iOS 4 by Aatish_molasi</title>
		<link>http://www.icodeblog.com/2010/07/08/asset-libraries-and-blocks-in-ios-4/#comment-9197</link>
		<dc:creator>Aatish_molasi</dc:creator>
		<pubDate>Wed, 08 Feb 2012 12:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2068#comment-9197</guid>
		<description>ermm its not showing me any images .. 

i do have some images that i have downloaded but its giving me the group as nil .. :/</description>
		<content:encoded><![CDATA[<p>ermm its not showing me any images .. </p>
<p>i do have some images that i have downloaded but its giving me the group as nil .. :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Programming Tutorial â€“ Transitioning Between Views by Abha Shakya</title>
		<link>http://www.icodeblog.com/2008/08/03/iphone-programming-tutorial-transitioning-between-views/#comment-9196</link>
		<dc:creator>Abha Shakya</dc:creator>
		<pubDate>Wed, 08 Feb 2012 09:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=138#comment-9196</guid>
		<description>can i implement it on ipad..... i tried it  but after pessing the button it comes to home application window where mky all project name were being displayed. i dont knoew what is the problem. plz let me know if it works for ipad too.</description>
		<content:encoded><![CDATA[<p>can i implement it on ipad&#8230;.. i tried it  but after pessing the button it comes to home application window where mky all project name were being displayed. i dont knoew what is the problem. plz let me know if it works for ipad too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Coding â€“ Turbo Charging Your Apps With NSOperation by Mr. Kela</title>
		<link>http://www.icodeblog.com/2010/03/04/iphone-coding-turbo-charging-your-apps-with-nsoperation/#comment-9194</link>
		<dc:creator>Mr. Kela</dc:creator>
		<pubDate>Tue, 07 Feb 2012 20:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1792#comment-9194</guid>
		<description> The biggest confusion surrounding NSOperation comes from the distinction between concurrent and non-concurrent operations. If you&#039;re using NSOperationQueue
 to run your operations, they&#039;ll always run in parallel as long as the 
operations&#039; prerequisites are met and you have enough processors.


In the original NSOperation terminology, a concurrent operation had an asynchronous API. It had a -start
 method that was expected to return quickly. It would spawn a thread, 
make an asynchronous API call, or perform some equivalent in this 
method. The operation queue then used key-value observing on the isExecuting and isFinished keys to get a notification when the operation had finished.


The point of this distinction was to reduce the overhead of thread creation. Non-concurrent operations just have a -main
 method. The original operation queue would execute this method in a 
separate thread for each operation that was running, while concurrent 
operations could be multiplexed onto a single thread.</description>
		<content:encoded><![CDATA[<p> The biggest confusion surrounding NSOperation comes from the distinction between concurrent and non-concurrent operations. If you&#8217;re using NSOperationQueue<br />
 to run your operations, they&#8217;ll always run in parallel as long as the<br />
operations&#8217; prerequisites are met and you have enough processors.</p>
<p>In the original NSOperation terminology, a concurrent operation had an asynchronous API. It had a -start<br />
 method that was expected to return quickly. It would spawn a thread,<br />
make an asynchronous API call, or perform some equivalent in this<br />
method. The operation queue then used key-value observing on the isExecuting and isFinished keys to get a notification when the operation had finished.</p>
<p>The point of this distinction was to reduce the overhead of thread creation. Non-concurrent operations just have a -main<br />
 method. The original operation queue would execute this method in a<br />
separate thread for each operation that was running, while concurrent<br />
operations could be multiplexed onto a single thread.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with the Twitter Oauth-Apocalypse by Ben Deckys</title>
		<link>http://www.icodeblog.com/2010/09/16/dealing-with-the-twitter-oauth-apocalypse/#comment-9193</link>
		<dc:creator>Ben Deckys</dc:creator>
		<pubDate>Tue, 07 Feb 2012 12:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=2362#comment-9193</guid>
		<description>I have found the same issue, it is preventing development of my own Twitter Client. Any ideas 7 months later?</description>
		<content:encoded><![CDATA[<p>I have found the same issue, it is preventing development of my own Twitter Client. Any ideas 7 months later?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Coding â€“ Turbo Charging Your Apps With NSOperation by Mr. Kela</title>
		<link>http://www.icodeblog.com/2010/03/04/iphone-coding-turbo-charging-your-apps-with-nsoperation/#comment-9192</link>
		<dc:creator>Mr. Kela</dc:creator>
		<pubDate>Mon, 06 Feb 2012 21:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1792#comment-9192</guid>
		<description>tolga:  Oh really? Do you really check/analyze the solution before posting any comment?
Run the code enabling breakpoints on the methods that loads the data from server, and see in the &quot;debug navigator&quot; on which thread data is being loaded. 

 NSOperationQueue is smart enough to only create about as many threads as there are cores, queuing the remaining operations. NSOperationQueue is free to switch to a smarter implementation (like Grand Central Dispatch) now or in the future. It  has some other nice constructs built-in, such as a sophisticated way of honoring operation priorities and dependencies.</description>
		<content:encoded><![CDATA[<p>tolga:  Oh really? Do you really check/analyze the solution before posting any comment?<br />
Run the code enabling breakpoints on the methods that loads the data from server, and see in the &#8220;debug navigator&#8221; on which thread data is being loaded. </p>
<p> NSOperationQueue is smart enough to only create about as many threads as there are cores, queuing the remaining operations. NSOperationQueue is free to switch to a smarter implementation (like Grand Central Dispatch) now or in the future. It  has some other nice constructs built-in, such as a sophisticated way of honoring operation priorities and dependencies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Coding â€“ Turbo Charging Your Apps With NSOperation by Mr. Kela</title>
		<link>http://www.icodeblog.com/2010/03/04/iphone-coding-turbo-charging-your-apps-with-nsoperation/#comment-9191</link>
		<dc:creator>Mr. Kela</dc:creator>
		<pubDate>Mon, 06 Feb 2012 21:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=1792#comment-9191</guid>
		<description>baabroo daabroo, great tutorialaabroo!
</description>
		<content:encoded><![CDATA[<p>baabroo daabroo, great tutorialaabroo!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Game Programming Tutorial Part 2- User Interaction, Simple AI, Game Logic by Appsdeveloper2</title>
		<link>http://www.icodeblog.com/2009/02/18/iphone-game-programming-tutorial-part-2-user-interaction-simple-ai-game-logic/#comment-9189</link>
		<dc:creator>Appsdeveloper2</dc:creator>
		<pubDate>Sun, 05 Feb 2012 18:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=656#comment-9189</guid>
		<description>Very useful post. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Very useful post. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 88 MPH: My App Rejection Story by Abdul Mannan</title>
		<link>http://www.icodeblog.com/2011/07/05/88-mph-my-app-rejection-story/#comment-9188</link>
		<dc:creator>Abdul Mannan</dc:creator>
		<pubDate>Sun, 05 Feb 2012 14:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.icodeblog.com/?p=3155#comment-9188</guid>
		<description>Jose joke teller! Oh! its my favorite.</description>
		<content:encoded><![CDATA[<p>Jose joke teller! Oh! its my favorite.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

