<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: iPhone Programming Tutorial &#8211; Creating a ToDo List Using SQLite Part 4</title>
	<atom:link href="/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/</link>
	<description>iPhone Programming Tutorials</description>
	<lastBuildDate>Thu, 13 Jun 2013 12:07:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Khaled</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-9481</link>
		<dc:creator>Khaled</dc:creator>
		<pubDate>Mon, 03 Sep 2012 09:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-9481</guid>
		<description><![CDATA[you should import &quot;Todo.h&quot; up there :)]]></description>
		<content:encoded><![CDATA[<p>you should import &#8220;Todo.h&#8221; up there <img src='/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Cunningham</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-9153</link>
		<dc:creator>Brian Cunningham</dc:creator>
		<pubDate>Mon, 23 Jan 2012 18:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-9153</guid>
		<description><![CDATA[This was truly excellent... thanks for taking to time to do this tutorial
]]></description>
		<content:encoded><![CDATA[<p>This was truly excellent&#8230; thanks for taking to time to do this tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NeedHelp</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-9101</link>
		<dc:creator>NeedHelp</dc:creator>
		<pubDate>Sun, 08 Jan 2012 03:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-9101</guid>
		<description><![CDATA[I found a bug and it&#039;s similar to what people are posting.Â  When you re-run the simulator... anything that you added to the database is lost.

So when you run it on a Device itself... everything works... database gets saved.Â  But if you TURN OFF (hold power off for 5 seconds)... anything that you added to the database is gone.Â  Basically the database gets deleted.

Anyone found a solution????]]></description>
		<content:encoded><![CDATA[<p>I found a bug and it&#8217;s similar to what people are posting.Â  When you re-run the simulator&#8230; anything that you added to the database is lost.</p>
<p>So when you run it on a Device itself&#8230; everything works&#8230; database gets saved.Â  But if you TURN OFF (hold power off for 5 seconds)&#8230; anything that you added to the database is gone.Â  Basically the database gets deleted.</p>
<p>Anyone found a solution????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucy Bain</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-8095</link>
		<dc:creator>Lucy Bain</dc:creator>
		<pubDate>Sun, 18 Sep 2011 02:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-8095</guid>
		<description><![CDATA[I got that error too, here&#039;s the problem:
The &quot;Todo&quot; class hasn&#039;t been declared yet, so when we type in &quot;(Todo *)&quot; the compiler is really confused - &quot;What&#039;s a &#039;Todo&#039;? Â I&#039;ve never heard of such a thing! Â Error message!&quot;.
And here&#039;s the solution:
Tell the compiler about the &quot;Todo&quot; class. Â There are (at least) two ways of doing this:
1 - #include &quot;Todo.h&quot; - not recommended. Â I&#039;m honestly not sure why this isn&#039;t a good idea, but all of the otherÂ tutorialsÂ and StackOverflow say not to do it.
2 - add the line &quot;@class Todo&quot; before the &quot; Â @interface:twitterÂ Â &quot; line in todoAppDelegate.h. Â As I understand it, this is a forward declaration of the Todo class. Â Basically it says to the compiler &quot;just an FYI, there&#039;s going to be a class called &#039;Todo&#039;, so if you see it, don&#039;t flip out.&quot;

Hope that helps!]]></description>
		<content:encoded><![CDATA[<p>I got that error too, here&#8217;s the problem:<br />
The &#8220;Todo&#8221; class hasn&#8217;t been declared yet, so when we type in &#8220;(Todo *)&#8221; the compiler is really confused &#8211; &#8220;What&#8217;s a &#8216;Todo&#8217;? Â I&#8217;ve never heard of such a thing! Â Error message!&#8221;.<br />
And here&#8217;s the solution:<br />
Tell the compiler about the &#8220;Todo&#8221; class. Â There are (at least) two ways of doing this:<br />
1 &#8211; #include &#8220;Todo.h&#8221; &#8211; not recommended. Â I&#8217;m honestly not sure why this isn&#8217;t a good idea, but all of the otherÂ tutorialsÂ and StackOverflow say not to do it.<br />
2 &#8211; add the line &#8220;@class Todo&#8221; before the &#8221; Â @interface:twitterÂ Â &#8221; line in todoAppDelegate.h. Â As I understand it, this is a forward declaration of the Todo class. Â Basically it says to the compiler &#8220;just an FYI, there&#8217;s going to be a class called &#8216;Todo&#8217;, so if you see it, don&#8217;t flip out.&#8221;</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wiegeabo Kilijabob</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-7973</link>
		<dc:creator>Wiegeabo Kilijabob</dc:creator>
		<pubDate>Mon, 29 Aug 2011 01:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-7973</guid>
		<description><![CDATA[Every time I try and add the line -(Todo*)addTodo; I get an error.

Expected &#039;)&#039; before &#039;Todo&#039;]]></description>
		<content:encoded><![CDATA[<p>Every time I try and add the line -(Todo*)addTodo; I get an error.</p>
<p>Expected &#8216;)&#8217; before &#8216;Todo&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fvelazco</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-7616</link>
		<dc:creator>Fvelazco</dc:creator>
		<pubDate>Fri, 12 Aug 2011 18:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-7616</guid>
		<description><![CDATA[Hey man, I added a new text field OBSÂ  but some problems.
http://i52.tinypic.com/2vdgtaa.png
http://i53.tinypic.com/1z7lld.png.
]]></description>
		<content:encoded><![CDATA[<p>Hey man, I added a new text field OBSÂ  but some problems.<br />
<a href="http://i52.tinypic.com/2vdgtaa.png" rel="nofollow">http://i52.tinypic.com/2vdgtaa.png</a><br />
<a href="http://i53.tinypic.com/1z7lld.png" rel="nofollow">http://i53.tinypic.com/1z7lld.png</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chargedneuron</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-7102</link>
		<dc:creator>Chargedneuron</dc:creator>
		<pubDate>Tue, 12 Jul 2011 01:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-7102</guid>
		<description><![CDATA[Could you please update this tutorial to reflect XCode 4 and iOS4 please? I am still very green to the programming and the errors I am getting are making it difficult to get a clear picture. Thank you for the awesome tutorials!]]></description>
		<content:encoded><![CDATA[<p>Could you please update this tutorial to reflect XCode 4 and iOS4 please? I am still very green to the programming and the errors I am getting are making it difficult to get a clear picture. Thank you for the awesome tutorials!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-6497</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Tue, 17 May 2011 13:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-6497</guid>
		<description><![CDATA[Â Excellent post. I&#039;ve already done all those steps and the app is working perfectly.]]></description>
		<content:encoded><![CDATA[<p>Â Excellent post. I&#8217;ve already done all those steps and the app is working perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-5765</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Mon, 21 Mar 2011 09:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-5765</guid>
		<description><![CDATA[how can I make it not show a To Do - item when that item is completed? I don&#039;t know if this was already implemented but that option doesn&#039;t work! Other than that a great tutorial serie ;)]]></description>
		<content:encoded><![CDATA[<p>how can I make it not show a To Do &#8211; item when that item is completed? I don&#8217;t know if this was already implemented but that option doesn&#8217;t work! Other than that a great tutorial serie <img src='/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aguseka</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/#comment-5741</link>
		<dc:creator>Aguseka</dc:creator>
		<pubDate>Fri, 18 Mar 2011 08:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-5741</guid>
		<description><![CDATA[Fails to update/insert/delete....]]></description>
		<content:encoded><![CDATA[<p>Fails to update/insert/delete&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
