<?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="http://icodeblog.com/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>Sat, 20 Mar 2010 23:11:37 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ali</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4853</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Tue, 09 Mar 2010 21:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4853</guid>
		<description>for updating the todo list after editing a TODO item we can override viewWillAppear to be like this:

&lt;code&gt;
- (void)viewWillAppear:(BOOL)animated {
	[self.tableView reloadData];
    [super viewWillAppear:animated];
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>for updating the todo list after editing a TODO item we can override viewWillAppear to be like this:</p>
<p><code><br />
- (void)viewWillAppear:(BOOL)animated {<br />
	[self.tableView reloadData];<br />
    [super viewWillAppear:animated];<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohsin</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4823</link>
		<dc:creator>mohsin</dc:creator>
		<pubDate>Sat, 06 Mar 2010 09:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4823</guid>
		<description>HEY BRNDON,THE SOURCE CODE DOWNLOAD LINK IS NOT WORKING!!
PLZ HAVE A LOOK....</description>
		<content:encoded><![CDATA[<p>HEY BRNDON,THE SOURCE CODE DOWNLOAD LINK IS NOT WORKING!!<br />
PLZ HAVE A LOOK&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pithhelmet</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4755</link>
		<dc:creator>pithhelmet</dc:creator>
		<pubDate>Sat, 27 Feb 2010 18:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4755</guid>
		<description>Hi Brandon,

How do you hide the keyboard when you are ready to save the new note??</description>
		<content:encoded><![CDATA[<p>Hi Brandon,</p>
<p>How do you hide the keyboard when you are ready to save the new note??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4580</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 05 Feb 2010 03:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4580</guid>
		<description>When I put the same breakpoint in this tutorial&#039;s code, here is what I get, the expected behavior:

- (IBAction) updateText:(id) sender {
	NSLog(@&quot;%@&quot;,self.todo.text);
	NSLog(@&quot;%@&quot;,self.todoText.text);
	self.todo.text = self.todoText.text;
	NSLog(@&quot;%@&quot;,self.todo.text);
	NSLog(@&quot;%@&quot;,self.todoText.text);
	[self.todo updateText];
}

Debugger Console output:

2010-02-04 21:35:02.545 todo[3326:207] DIGG this tutorial
2010-02-04 21:35:02.547 todo[3326:207] REDDIT this tutorial
2010-02-04 21:35:02.548 todo[3326:207] REDDIT this tutorial
2010-02-04 21:35:02.548 todo[3326:207] REDDIT this tutorial

Interesting?</description>
		<content:encoded><![CDATA[<p>When I put the same breakpoint in this tutorial&#8217;s code, here is what I get, the expected behavior:</p>
<p>- (IBAction) updateText:(id) sender {<br />
	NSLog(@&#8221;%@&#8221;,self.todo.text);<br />
	NSLog(@&#8221;%@&#8221;,self.todoText.text);<br />
	self.todo.text = self.todoText.text;<br />
	NSLog(@&#8221;%@&#8221;,self.todo.text);<br />
	NSLog(@&#8221;%@&#8221;,self.todoText.text);<br />
	[self.todo updateText];<br />
}</p>
<p>Debugger Console output:</p>
<p>2010-02-04 21:35:02.545 todo[3326:207] DIGG this tutorial<br />
2010-02-04 21:35:02.547 todo[3326:207] REDDIT this tutorial<br />
2010-02-04 21:35:02.548 todo[3326:207] REDDIT this tutorial<br />
2010-02-04 21:35:02.548 todo[3326:207] REDDIT this tutorial</p>
<p>Interesting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4579</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 05 Feb 2010 03:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4579</guid>
		<description>I have an application I created after working through this tutorial.  It is similar to this app, but has a few more text fields.
 
The interesting thing is that when I go to edit one of the items in my list of items, I click it, it takes me to the item view and shows all the values for that item, but when I change the value of one of the fields, say the date, it never updates on the original tableview on the main screen.  I set up some NSLogs in the debugger console and saw something interesting:
 
My Code: 
 
- (IBAction)updateText:(id) sender {
NSLog(@&quot;%@&quot;,self.milemarker.logdate);
NSLog(@&quot;%@&quot;,self.milemarkerLogDate.text);
self.milemarker.logdate = self.milemarkerLogDate.text;
NSLog(@&quot;%@&quot;,self.milemarker.logdate);
NSLog(@&quot;%@&quot;,self.milemarkerLogDate.text);
[self.milemarker updateText];
}
 
THe debugger output:
 
2010-02-04 17:51:41.602 MileMarker[2754:207] (null)
2010-02-04 17:51:41.603 MileMarker[2754:207] 11-11-1111
2010-02-04 17:51:41.604 MileMarker[2754:207] (null)
2010-02-04 17:51:41.605 MileMarker[2754:207] 11-11-1111
 
I would expect to see the first line that is null to have the CURRENT value from the date textfield in my app, I would expect the second null to have 11-11-1111 in it due to the assignment I am making (self.milemarker.logdate = self.milemarkerLogDate.text;).
 
Any ideas why I am not picking up my current values?  When I put a breakpoint in it says out of scope for self.milemarker.logdate
 
I know I am not showing all of the details here, but if anyone needs to see any of the source code files, I will be glad to provide them.  This one has me scratching my head since I followed the examples in Brandon&#039;s demo very closely.
 
I probably missed something simple though...
Thanks
Jeff</description>
		<content:encoded><![CDATA[<p>I have an application I created after working through this tutorial.  It is similar to this app, but has a few more text fields.</p>
<p>The interesting thing is that when I go to edit one of the items in my list of items, I click it, it takes me to the item view and shows all the values for that item, but when I change the value of one of the fields, say the date, it never updates on the original tableview on the main screen.  I set up some NSLogs in the debugger console and saw something interesting:</p>
<p>My Code: </p>
<p>- (IBAction)updateText:(id) sender {<br />
NSLog(@&#8221;%@&#8221;,self.milemarker.logdate);<br />
NSLog(@&#8221;%@&#8221;,self.milemarkerLogDate.text);<br />
self.milemarker.logdate = self.milemarkerLogDate.text;<br />
NSLog(@&#8221;%@&#8221;,self.milemarker.logdate);<br />
NSLog(@&#8221;%@&#8221;,self.milemarkerLogDate.text);<br />
[self.milemarker updateText];<br />
}</p>
<p>THe debugger output:</p>
<p>2010-02-04 17:51:41.602 MileMarker[2754:207] (null)<br />
2010-02-04 17:51:41.603 MileMarker[2754:207] 11-11-1111<br />
2010-02-04 17:51:41.604 MileMarker[2754:207] (null)<br />
2010-02-04 17:51:41.605 MileMarker[2754:207] 11-11-1111</p>
<p>I would expect to see the first line that is null to have the CURRENT value from the date textfield in my app, I would expect the second null to have 11-11-1111 in it due to the assignment I am making (self.milemarker.logdate = self.milemarkerLogDate.text;).</p>
<p>Any ideas why I am not picking up my current values?  When I put a breakpoint in it says out of scope for self.milemarker.logdate</p>
<p>I know I am not showing all of the details here, but if anyone needs to see any of the source code files, I will be glad to provide them.  This one has me scratching my head since I followed the examples in Brandon&#8217;s demo very closely.</p>
<p>I probably missed something simple though&#8230;<br />
Thanks<br />
Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neil</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4213</link>
		<dc:creator>neil</dc:creator>
		<pubDate>Tue, 29 Dec 2009 21:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4213</guid>
		<description>File todo.m, property &quot;text&quot; is &quot;retained&quot;. Doesn&#039;t that leak? I can&#039;t see a release.</description>
		<content:encoded><![CDATA[<p>File todo.m, property &#8220;text&#8221; is &#8220;retained&#8221;. Doesn&#8217;t that leak? I can&#8217;t see a release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Árpi</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4202</link>
		<dc:creator>Árpi</dc:creator>
		<pubDate>Mon, 28 Dec 2009 18:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4202</guid>
		<description>Hey Brandon,
First of all, I&#039;d like to thank you for these awesome tutorials! I&#039;ve started working with the iPhone about two months ago, and i can tell it is much easier with your tutorials!
But i&#039;m still a rookie (no wonders:) and i&#039;d need a little advice.
I made a function for posting the todos to an online database. It&#039;s called when a button is pressed on the toolbar i added. It looks like this:

- (void) send:(id)sender {	

	//NSString * udid = [[UIDevice currentDevice] uniqueIdentifier];
	
	todoAppDelegate *appDelegate = (todoAppDelegate *)[[UIApplication sharedApplication] delegate];
	unsigned count = [appDelegate.todos count];
	Todo *todo;
	
	while (count--)  {
		todo = (Todo *)[appDelegate.todos objectAtIndex:count];
		NSData *returnData;
		NSURLResponse *response;
		NSError *error;
		NSString *url = [NSString stringWithFormat:@&quot;http://some.php?text=%@&amp;priority=%i&amp;status=%i&quot;,
						todo.text,todo.priority,todo.status];
		NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
		
		[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
		returnData = [NSURLConnection sendSynchronousRequest:request	returningResponse:&amp;response error:&amp;error];
		[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
	}

}

But it only sends the first todo in the array of todos, and i don&#039;t have a clue what did i do wrong. Could you help me out with this one?
Thanks very much in advance!
Árpi</description>
		<content:encoded><![CDATA[<p>Hey Brandon,<br />
First of all, I&#8217;d like to thank you for these awesome tutorials! I&#8217;ve started working with the iPhone about two months ago, and i can tell it is much easier with your tutorials!<br />
But i&#8217;m still a rookie (no wonders:) and i&#8217;d need a little advice.<br />
I made a function for posting the todos to an online database. It&#8217;s called when a button is pressed on the toolbar i added. It looks like this:</p>
<p>- (void) send:(id)sender {	</p>
<p>	//NSString * udid = [[UIDevice currentDevice] uniqueIdentifier];</p>
<p>	todoAppDelegate *appDelegate = (todoAppDelegate *)[[UIApplication sharedApplication] delegate];<br />
	unsigned count = [appDelegate.todos count];<br />
	Todo *todo;</p>
<p>	while (count&#8211;)  {<br />
		todo = (Todo *)[appDelegate.todos objectAtIndex:count];<br />
		NSData *returnData;<br />
		NSURLResponse *response;<br />
		NSError *error;<br />
		NSString *url = [NSString stringWithFormat:@"http://some.php?text=%@&amp;priority=%i&amp;status=%i",<br />
						todo.text,todo.priority,todo.status];<br />
		NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];</p>
<p>		[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];<br />
		returnData = [NSURLConnection sendSynchronousRequest:request	returningResponse:&amp;response error:&amp;error];<br />
		[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];<br />
	}</p>
<p>}</p>
<p>But it only sends the first todo in the array of todos, and i don&#8217;t have a clue what did i do wrong. Could you help me out with this one?<br />
Thanks very much in advance!<br />
Árpi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeno Davatz</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-4187</link>
		<dc:creator>Zeno Davatz</dc:creator>
		<pubDate>Thu, 24 Dec 2009 10:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-4187</guid>
		<description>Great tutorial! All steps are fun and worthwile to do!

Also added the change of Wil. Now the todo-Text is also saved.

Merry X-Mas!</description>
		<content:encoded><![CDATA[<p>Great tutorial! All steps are fun and worthwile to do!</p>
<p>Also added the change of Wil. Now the todo-Text is also saved.</p>
<p>Merry X-Mas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ODIS</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3836</link>
		<dc:creator>ODIS</dc:creator>
		<pubDate>Thu, 26 Nov 2009 16:23:22 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3836</guid>
		<description>Hi people !
 Thanks for this great tutorial,  

I have problem ,when i try to implement  delete  something in my datebase (my own app), i found this error:  

&#039;NSInternalInconsistencyException&#039;, reason: &#039;Error while creating update statement. &#039;no such column: idJunta&#039;&#039;
what can i do?

thanks! :)</description>
		<content:encoded><![CDATA[<p>Hi people !<br />
 Thanks for this great tutorial,  </p>
<p>I have problem ,when i try to implement  delete  something in my datebase (my own app), i found this error:  </p>
<p>&#8216;NSInternalInconsistencyException&#8217;, reason: &#8216;Error while creating update statement. &#8216;no such column: idJunta&#8221;<br />
what can i do?</p>
<p>thanks! <img src='http://icodeblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nagi</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3293</link>
		<dc:creator>Nagi</dc:creator>
		<pubDate>Sat, 17 Oct 2009 05:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3293</guid>
		<description>Great tutorials. Learned a lot from them.</description>
		<content:encoded><![CDATA[<p>Great tutorials. Learned a lot from them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3233</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Mon, 12 Oct 2009 13:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3233</guid>
		<description>Hey Brandon,

Excellent tutorials! I love the way they are guiding the development and making you type in the code!

Unfortunately I have a bug in my code where an unhanded excception occurs on the line:

	[self.navigationController pushViewController:self.todoView animated:YES];

in RootViewController.m

I have tried debugging it but cannot seem to find what the problem is. I have even gone as far as downloading your code (which runs) and comparing every line of the code with mine.... I can see no differences! I have also resorted to copying across your sqlite3 database and still no luck. All I can think of is that there is an error in my XIB when I deleted the textview and added the textField. I have gone over the step many times but maybe I am missing something. I have searched for any textView references that I have missed but cannot seem to find any!

I appreciate that you are probably extremely busy but is there a chance I could send you my project to see if you can work out where I am going wrong?

Cheers

AJ</description>
		<content:encoded><![CDATA[<p>Hey Brandon,</p>
<p>Excellent tutorials! I love the way they are guiding the development and making you type in the code!</p>
<p>Unfortunately I have a bug in my code where an unhanded excception occurs on the line:</p>
<p>	[self.navigationController pushViewController:self.todoView animated:YES];</p>
<p>in RootViewController.m</p>
<p>I have tried debugging it but cannot seem to find what the problem is. I have even gone as far as downloading your code (which runs) and comparing every line of the code with mine&#8230;. I can see no differences! I have also resorted to copying across your sqlite3 database and still no luck. All I can think of is that there is an error in my XIB when I deleted the textview and added the textField. I have gone over the step many times but maybe I am missing something. I have searched for any textView references that I have missed but cannot seem to find any!</p>
<p>I appreciate that you are probably extremely busy but is there a chance I could send you my project to see if you can work out where I am going wrong?</p>
<p>Cheers</p>
<p>AJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MonkyMotion &#187; Bookmarks del 3 de Octubre</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3155</link>
		<dc:creator>MonkyMotion &#187; Bookmarks del 3 de Octubre</dc:creator>
		<pubDate>Sat, 03 Oct 2009 17:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3155</guid>
		<description>[...] iPhone Programming Tutorial &#8211; Creating a ToDo List Using SQLite Part 4 &#124; iCodeBlogTutorial de c&#243;mo crear un programa &quot;To Do&quot; para iPhone usando SQLite parte 4. [...]</description>
		<content:encoded><![CDATA[<p>[...] iPhone Programming Tutorial &ndash; Creating a ToDo List Using SQLite Part 4 | iCodeBlogTutorial de c&oacute;mo crear un programa &quot;To Do&quot; para iPhone usando SQLite parte 4. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3151</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 02 Oct 2009 15:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3151</guid>
		<description>Nice work on this one.  Problem...

If you click add, then go back without entering anything, it adds a BLANK Todo item.  How can we stop this from happening?

I&#039;ve tried changing some of the code adding if (todoText = @&quot;&quot;)  Dont do anything...  But it only works half way.

Any help?  Thanks in advance, and GREAT tutorials!</description>
		<content:encoded><![CDATA[<p>Nice work on this one.  Problem&#8230;</p>
<p>If you click add, then go back without entering anything, it adds a BLANK Todo item.  How can we stop this from happening?</p>
<p>I&#8217;ve tried changing some of the code adding if (todoText = @&#8221;")  Dont do anything&#8230;  But it only works half way.</p>
<p>Any help?  Thanks in advance, and GREAT tutorials!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shay</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3140</link>
		<dc:creator>Shay</dc:creator>
		<pubDate>Wed, 30 Sep 2009 16:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3140</guid>
		<description>Thanks, Brandon.

I like following your tutorials. 

They are like a magic revealed.

Regards
Shay</description>
		<content:encoded><![CDATA[<p>Thanks, Brandon.</p>
<p>I like following your tutorials. </p>
<p>They are like a magic revealed.</p>
<p>Regards<br />
Shay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ComputerJ</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3111</link>
		<dc:creator>ComputerJ</dc:creator>
		<pubDate>Tue, 29 Sep 2009 01:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3111</guid>
		<description>Hi Brandon,
First of all, I want to thank and congratulate you on this great series of tutorials!! Awesome work man!! 
I have to do a tiny app for work and bought 2 books (keep titles out for now) and although 1 of them is not so bad, it&#039;s so deep and complicated to follow that almost made me quit on the project. I found your tutorials and followed them all up to the ToDo Part 1 (I have 2 through 4 to continue tomorrow ;-) but I&#039;m back on my feet thanks to your tutorials!! Thank you!!

Now, a conceptual question. What&#039;d be the best option to sync a SQLite DB with another DB in a webserver or FTP site? WOuld you have SQLite handle the sync having a MySQL on the other side? Or you&#039;d wrap all changes since last sync in an xml or other format file and send it to &quot;the other side&quot; to be read and processed by a script? 

I can&#039;t find any lead on Google and my app will need exactly that. The skeleton will be similar to your &quot;ToDo app&quot; with some added Tabs in one of the views, but then once all is working on the iPhone, I need to send it to a &quot;main DB&quot; where multiple iPhones will sync with. That DB will likely to be SQLite or MySQL, and I can&#039;t figure out what best practices for that are....any clue will be greatly appreciated.

And once again, THANK YOU!! Great tutorials!!</description>
		<content:encoded><![CDATA[<p>Hi Brandon,<br />
First of all, I want to thank and congratulate you on this great series of tutorials!! Awesome work man!!<br />
I have to do a tiny app for work and bought 2 books (keep titles out for now) and although 1 of them is not so bad, it&#8217;s so deep and complicated to follow that almost made me quit on the project. I found your tutorials and followed them all up to the ToDo Part 1 (I have 2 through 4 to continue tomorrow <img src='http://icodeblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  but I&#8217;m back on my feet thanks to your tutorials!! Thank you!!</p>
<p>Now, a conceptual question. What&#8217;d be the best option to sync a SQLite DB with another DB in a webserver or FTP site? WOuld you have SQLite handle the sync having a MySQL on the other side? Or you&#8217;d wrap all changes since last sync in an xml or other format file and send it to &#8220;the other side&#8221; to be read and processed by a script? </p>
<p>I can&#8217;t find any lead on Google and my app will need exactly that. The skeleton will be similar to your &#8220;ToDo app&#8221; with some added Tabs in one of the views, but then once all is working on the iPhone, I need to send it to a &#8220;main DB&#8221; where multiple iPhones will sync with. That DB will likely to be SQLite or MySQL, and I can&#8217;t figure out what best practices for that are&#8230;.any clue will be greatly appreciated.</p>
<p>And once again, THANK YOU!! Great tutorials!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mora</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3044</link>
		<dc:creator>mora</dc:creator>
		<pubDate>Mon, 21 Sep 2009 19:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3044</guid>
		<description>&lt;a title=&quot;شبكة الهنوف&quot; href=&quot;http://www.alhnuf.com/&quot; rel=&quot;nofollow&quot;&gt;شبكة الهنوف&lt;/a&gt; - &lt;a title=&quot;صور سيارات&quot; href=&quot;http://www.alhnuf.com/members/1-albums124-صور-سيارات/&quot; rel=&quot;nofollow&quot;&gt;صور سيارات&lt;/a&gt; - &lt;a title=&quot;العاب بنات&quot; href=&quot;http://www.alhnuf.com/tags-list/العاب%20بنات.html&quot; rel=&quot;nofollow&quot;&gt;العاب بنات&lt;/a&gt; - &lt;a title=&quot;يوتيوب&quot; href=&quot;http://www.alhnuf.com/tags-list/يوتيوب.html&quot; rel=&quot;nofollow&quot;&gt;يوتيوب&lt;/a&gt; - &lt;a title=&quot;المنتدى الاسلامي&quot; href=&quot;http://www.alhnuf.com/2/&quot; rel=&quot;nofollow&quot;&gt;المنتدى الاسلامي&lt;/a&gt; - &lt;a title=&quot;تحميل القرآن الكريم&quot; href=&quot;http://www.alhnuf.com/278/&quot; rel=&quot;nofollow&quot;&gt;تحميل القرآن الكريم&lt;/a&gt; - &lt;a title=&quot;تحميل محاضرات اسلامية&quot; href=&quot;http://www.alhnuf.com/279/&quot; rel=&quot;nofollow&quot;&gt;تحميل محاضرات اسلامية&lt;/a&gt; - &lt;a title=&quot;تحميل اناشيد اسلامية&quot; href=&quot;http://www.alhnuf.com/170/&quot; rel=&quot;nofollow&quot;&gt;تحميل اناشيد اسلامية&lt;/a&gt; - &lt;a title=&quot;منتدى الصور&quot; href=&quot;http://www.alhnuf.com/8/&quot; rel=&quot;nofollow&quot;&gt;منتدى الصور&lt;/a&gt; - &lt;a title=&quot;صور حول العالم&quot; href=&quot;http://www.alhnuf.com/277/&quot; rel=&quot;nofollow&quot;&gt;صور حول العالم&lt;/a&gt; - &lt;a title=&quot;العاب صور&quot; href=&quot;http://www.alhnuf.com/268/&quot; rel=&quot;nofollow&quot;&gt;العاب صور&lt;/a&gt; - &lt;a title=&quot;خلفيات الشاشة&quot; href=&quot;http://www.alhnuf.com/254/&quot; rel=&quot;nofollow&quot;&gt;خلفيات الشاشة&lt;/a&gt; - &lt;a title=&quot;منتدى صور الاطفال&quot; href=&quot;http://www.alhnuf.com/157/&quot; rel=&quot;nofollow&quot;&gt;منتدى صور الاطفال&lt;/a&gt; - &lt;a title=&quot;منتدى العجائب والغرائب&quot; href=&quot;http://www.alhnuf.com/7/&quot; rel=&quot;nofollow&quot;&gt;منتدى العجائب والغرائب&lt;/a&gt; - &lt;a title=&quot;منتدى الخواطر&quot; href=&quot;http://www.alhnuf.com/11/&quot; rel=&quot;nofollow&quot;&gt;منتدى الخواطر&lt;/a&gt; - &lt;a title=&quot;منتدى الشعر&quot; href=&quot;http://www.alhnuf.com/31/&quot; rel=&quot;nofollow&quot;&gt;منتدى القصص و الروايات&lt;/a&gt; - &lt;a title=&quot;منتدى حواء&quot; href=&quot;http://www.alhnuf.com/14/&quot; rel=&quot;nofollow&quot;&gt;منتدى حواء&lt;/a&gt;
&lt;a title=&quot;منتدى الدوري الإماراتي &quot; href=&quot;http://kora.alhnuf.com/منتدى-الدوري-الإماراتي-5/&quot; rel=&quot;nofollow&quot;&gt;منتدى الدوري الإماراتي&lt;/a&gt; - &lt;a title=&quot;منتدى الدوري الإسباني &quot; href=&quot;http://kora.alhnuf.com/منتدى-الدوري-الإسباني-13/&quot; rel=&quot;nofollow&quot;&gt;منتدى الدوري الإسباني&lt;/a&gt; - &lt;a title=&quot;منتدى الدوري الإنجليزي&quot; href=&quot;http://kora.alhnuf.com/منتدى-الدوري-الإنجليزي-14/&quot; rel=&quot;nofollow&quot;&gt;منتدى الدوري الإنجليزي&lt;/a&gt; - &lt;a title=&quot;منتدى الدوري الإيطالي&quot; href=&quot;http://kora.alhnuf.com/منتدى-الدوري-الإيطالي-15/&quot; rel=&quot;nofollow&quot;&gt;منتدى الدوري الإيطالي&lt;/a&gt; - &lt;a title=&quot;مكتبة الفيديو الرياضية&quot; href=&quot;http://www.alhnuf.com/tags-list/صور%20اطفال%20مض</description>
		<content:encoded><![CDATA[<p><a title="شبكة الهنوف" href="http://www.alhnuf.com/" rel="nofollow">شبكة الهنوف</a> &#8211; <a title="صور سيارات" href="http://www.alhnuf.com/members/1-albums124-صور-سيارات/" rel="nofollow">صور سيارات</a> &#8211; <a title="العاب بنات" href="http://www.alhnuf.com/tags-list/العاب%20بنات.html" rel="nofollow">العاب بنات</a> &#8211; <a title="يوتيوب" href="http://www.alhnuf.com/tags-list/يوتيوب.html" rel="nofollow">يوتيوب</a> &#8211; <a title="المنتدى الاسلامي" href="http://www.alhnuf.com/2/" rel="nofollow">المنتدى الاسلامي</a> &#8211; <a title="تحميل القرآن الكريم" href="http://www.alhnuf.com/278/" rel="nofollow">تحميل القرآن الكريم</a> &#8211; <a title="تحميل محاضرات اسلامية" href="http://www.alhnuf.com/279/" rel="nofollow">تحميل محاضرات اسلامية</a> &#8211; <a title="تحميل اناشيد اسلامية" href="http://www.alhnuf.com/170/" rel="nofollow">تحميل اناشيد اسلامية</a> &#8211; <a title="منتدى الصور" href="http://www.alhnuf.com/8/" rel="nofollow">منتدى الصور</a> &#8211; <a title="صور حول العالم" href="http://www.alhnuf.com/277/" rel="nofollow">صور حول العالم</a> &#8211; <a title="العاب صور" href="http://www.alhnuf.com/268/" rel="nofollow">العاب صور</a> &#8211; <a title="خلفيات الشاشة" href="http://www.alhnuf.com/254/" rel="nofollow">خلفيات الشاشة</a> &#8211; <a title="منتدى صور الاطفال" href="http://www.alhnuf.com/157/" rel="nofollow">منتدى صور الاطفال</a> &#8211; <a title="منتدى العجائب والغرائب" href="http://www.alhnuf.com/7/" rel="nofollow">منتدى العجائب والغرائب</a> &#8211; <a title="منتدى الخواطر" href="http://www.alhnuf.com/11/" rel="nofollow">منتدى الخواطر</a> &#8211; <a title="منتدى الشعر" href="http://www.alhnuf.com/31/" rel="nofollow">منتدى القصص و الروايات</a> &#8211; <a title="منتدى حواء" href="http://www.alhnuf.com/14/" rel="nofollow">منتدى حواء</a><br />
<a title="منتدى الدوري الإماراتي " href="http://kora.alhnuf.com/منتدى-الدوري-الإماراتي-5/" rel="nofollow">منتدى الدوري الإماراتي</a> &#8211; <a title="منتدى الدوري الإسباني " href="http://kora.alhnuf.com/منتدى-الدوري-الإسباني-13/" rel="nofollow">منتدى الدوري الإسباني</a> &#8211; <a title="منتدى الدوري الإنجليزي" href="http://kora.alhnuf.com/منتدى-الدوري-الإنجليزي-14/" rel="nofollow">منتدى الدوري الإنجليزي</a> &#8211; <a title="منتدى الدوري الإيطالي" href="http://kora.alhnuf.com/منتدى-الدوري-الإيطالي-15/" rel="nofollow">منتدى الدوري الإيطالي</a> &#8211; <a title=&#8221;مكتبة الفيديو الرياضية&#8221; href=&#8221;http://www.alhnuf.com/tags-list/صور%20اطفال%20مض</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blade Olson</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3036</link>
		<dc:creator>Blade Olson</dc:creator>
		<pubDate>Sun, 20 Sep 2009 07:45:06 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3036</guid>
		<description>I am trying to add an additional UITextField. I want to use the first one as the Todo Title. And the second one to be notes about the todo. I am having trouble linking it back to data. Some clues would be appreciated.</description>
		<content:encoded><![CDATA[<p>I am trying to add an additional UITextField. I want to use the first one as the Todo Title. And the second one to be notes about the todo. I am having trouble linking it back to data. Some clues would be appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandeep</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3023</link>
		<dc:creator>sandeep</dc:creator>
		<pubDate>Thu, 17 Sep 2009 10:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3023</guid>
		<description>good yarrrrrrrr</description>
		<content:encoded><![CDATA[<p>good yarrrrrrrr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Satyam</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-3018</link>
		<dc:creator>Satyam</dc:creator>
		<pubDate>Wed, 16 Sep 2009 17:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-3018</guid>
		<description>Along with todo, I would like to set the target time to complete. In case, if I didn&#039;t change the status (or not meeting the date), I want it to show alert at that particular time and date even if some other app is running at that time.
Can some one tell me how to implement such functionality like alarm....?
--satyam</description>
		<content:encoded><![CDATA[<p>Along with todo, I would like to set the target time to complete. In case, if I didn&#8217;t change the status (or not meeting the date), I want it to show alert at that particular time and date even if some other app is running at that time.<br />
Can some one tell me how to implement such functionality like alarm&#8230;.?<br />
&#8211;satyam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melvin</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2555</link>
		<dc:creator>Melvin</dc:creator>
		<pubDate>Mon, 27 Jul 2009 08:50:12 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2555</guid>
		<description>Hi Brandon,

I have been through all your tutorials on SQLite3 and others. Its all great with good explanations for those whom are new to xcode. 

Im a slow learner, I can understand your other tutorials. But this one is a little harder to understand. Can you email me and tell me what the individual class suppose to do? I will try to take it from there on my own. 

Thanks
Melvin
lxlionhartxl@yahoo.com.sg</description>
		<content:encoded><![CDATA[<p>Hi Brandon,</p>
<p>I have been through all your tutorials on SQLite3 and others. Its all great with good explanations for those whom are new to xcode. </p>
<p>Im a slow learner, I can understand your other tutorials. But this one is a little harder to understand. Can you email me and tell me what the individual class suppose to do? I will try to take it from there on my own. </p>
<p>Thanks<br />
Melvin<br />
<a href="mailto:lxlionhartxl@yahoo.com.sg">lxlionhartxl@yahoo.com.sg</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anurag</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2507</link>
		<dc:creator>Anurag</dc:creator>
		<pubDate>Fri, 24 Jul 2009 11:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2507</guid>
		<description>Thanks for the awesome tutorial! Really helped me get started with iPhone development.</description>
		<content:encoded><![CDATA[<p>Thanks for the awesome tutorial! Really helped me get started with iPhone development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2355</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Sun, 12 Jul 2009 07:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2355</guid>
		<description>Hey Brandon,

I found a bug in your source code that you have available for download.  I can change the names of the todo items, and they will save, except for the very first one.  In the case for your app, if I try to change the &quot;Take out trash&quot; item, and then exit the app, and then re-open it, the name doesn&#039;t change!</description>
		<content:encoded><![CDATA[<p>Hey Brandon,</p>
<p>I found a bug in your source code that you have available for download.  I can change the names of the todo items, and they will save, except for the very first one.  In the case for your app, if I try to change the &#8220;Take out trash&#8221; item, and then exit the app, and then re-open it, the name doesn&#8217;t change!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2342</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 10 Jul 2009 14:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2342</guid>
		<description>I was wondering if there was a way to reorder list in the todo&#039;s and have the SQL database save it?</description>
		<content:encoded><![CDATA[<p>I was wondering if there was a way to reorder list in the todo&#8217;s and have the SQL database save it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Perim</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2245</link>
		<dc:creator>Perim</dc:creator>
		<pubDate>Wed, 08 Jul 2009 11:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2245</guid>
		<description>Hi,

   Nice tutorial(s)! Thanks for the same.

  I would like to know if the information created in SQlite will stick around for multiple versions of the same app and across firmware/OS upgrades. Any pointers would be of immense help!

  Appreciate your time!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>   Nice tutorial(s)! Thanks for the same.</p>
<p>  I would like to know if the information created in SQlite will stick around for multiple versions of the same app and across firmware/OS upgrades. Any pointers would be of immense help!</p>
<p>  Appreciate your time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunny</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2243</link>
		<dc:creator>Sunny</dc:creator>
		<pubDate>Wed, 08 Jul 2009 10:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2243</guid>
		<description>Hello,

after I follow the tutorial, it done
but i have some question on delete and insert
for example 
at now the list have four &quot;todo&quot; item.
now, i delete any one of them.
and restart the application (only have three item now)

but if I remove the application from the simulator
and reinstall it
I will get four &quot;todo&quot; item.

how can i solve this problem?
i guess it because of &quot;commit sql&quot; but how can i commit it?</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>after I follow the tutorial, it done<br />
but i have some question on delete and insert<br />
for example<br />
at now the list have four &#8220;todo&#8221; item.<br />
now, i delete any one of them.<br />
and restart the application (only have three item now)</p>
<p>but if I remove the application from the simulator<br />
and reinstall it<br />
I will get four &#8220;todo&#8221; item.</p>
<p>how can i solve this problem?<br />
i guess it because of &#8220;commit sql&#8221; but how can i commit it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabiano</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2062</link>
		<dc:creator>Fabiano</dc:creator>
		<pubDate>Fri, 19 Jun 2009 21:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2062</guid>
		<description>Hello Brandon,

I just made further tests about the error i`m getting running the app on my real iphone device and received the error message found below.

It`s saying that it was not able to find my application document directory, and because of that it cannot create the database.

To install the application on my iphone(jailbreaked and i do not have iphone developer sign code yet) I generated the .app file(compiled it) send it to my //Applications/ folder in iphone via ssh and then i executed the $ ldid -S /Applications/YourApp.app/YourApp and the$ killall SpringBoard from my mac terminal.(more details can be found here http://adeem.me/blog/2009/03/29/bypass-code-signature-published-your-application-on-cydia/

After that my application just started showing on the iphone but when i run it i get the error message below.

Do yo have any ideias of what could i do to make it work?
thanks!

Jun 19 18:02:15 iphone sshd[91]: USER_PROCESS: 91 ttys000
Jun 19 18:04:21 iphone /Applications/DrillDownApp.app/DrillDownApp[95]: open on /var/mobile/Documents/todo.sqlite: No such file or directory
Jun 19 18:04:21 iphone DrillDownApp[95]: *** Assertion failure in -[eMenuAppDelegate createEditableCopyOfDatabaseIfNeeded], /Users/fnunes/Documents/eMenu/Classes/eMenuAppDelegate.m:108
Jun 19 18:04:21 iphone DrillDownApp[95]: *** Terminating app due to uncaught exception &#039;NSInternalInconsistencyException&#039;, reason: &#039;Failed to create writable database file with message &#039;Operation could not be completed. No such file or directory&#039;.&#039;
Jun 19 18:04:21 iphone DrillDownApp[95]: Stack: (\n    808221155,\n    806100816,\n    808035743,\n    812495815,\n    8899,\n    8391,\n    816116592,\n    816153144,\n    812205481,\n    807837071,\n    807834407,\n    827735648,\n    816119480,\n    816158236,\n    8343,\n    8244\n)
Jun 19 18:04:21 iphone UIKitApplication:com.yourcompany.DrillDownApp[0xe85e][95]: terminate called after throwing an instance of &#039;NSException&#039;
Jun 19 18:04:22 iphone ReportCrash[96]: Formulating crash report for process DrillDownApp[95]
Jun 19 18:04:23 iphone com.apple.launchd[1] (UIKitApplication:com.yourcompany.DrillDownApp[0xe85e][95]): Exited abnormally: Abort trap
Jun 19 18:04:23 iphone SpringBoard[39]: Application  com.yourcompany.DrillDownApp activate: animated  deactivate:  exited abnormally with signal 6: Abort trap
Jun 19 18:04:23 iphone ReportCrash[96]: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/DrillDownApp_2009-06-19-180422_iphone.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
Jun 19 18:04:23 iphone com.apple.SpringBoard[39]: CoreAnimation: timed out fence 2</description>
		<content:encoded><![CDATA[<p>Hello Brandon,</p>
<p>I just made further tests about the error i`m getting running the app on my real iphone device and received the error message found below.</p>
<p>It`s saying that it was not able to find my application document directory, and because of that it cannot create the database.</p>
<p>To install the application on my iphone(jailbreaked and i do not have iphone developer sign code yet) I generated the .app file(compiled it) send it to my //Applications/ folder in iphone via ssh and then i executed the $ ldid -S /Applications/YourApp.app/YourApp and the$ killall SpringBoard from my mac terminal.(more details can be found here <a href="http://adeem.me/blog/2009/03/29/bypass-code-signature-published-your-application-on-cydia/" rel="nofollow">http://adeem.me/blog/2009/03/29/bypass-code-signature-published-your-application-on-cydia/</a></p>
<p>After that my application just started showing on the iphone but when i run it i get the error message below.</p>
<p>Do yo have any ideias of what could i do to make it work?<br />
thanks!</p>
<p>Jun 19 18:02:15 iphone sshd[91]: USER_PROCESS: 91 ttys000<br />
Jun 19 18:04:21 iphone /Applications/DrillDownApp.app/DrillDownApp[95]: open on /var/mobile/Documents/todo.sqlite: No such file or directory<br />
Jun 19 18:04:21 iphone DrillDownApp[95]: *** Assertion failure in -[eMenuAppDelegate createEditableCopyOfDatabaseIfNeeded], /Users/fnunes/Documents/eMenu/Classes/eMenuAppDelegate.m:108<br />
Jun 19 18:04:21 iphone DrillDownApp[95]: *** Terminating app due to uncaught exception &#8216;NSInternalInconsistencyException&#8217;, reason: &#8216;Failed to create writable database file with message &#8216;Operation could not be completed. No such file or directory&#8217;.&#8217;<br />
Jun 19 18:04:21 iphone DrillDownApp[95]: Stack: (\n    808221155,\n    806100816,\n    808035743,\n    812495815,\n    8899,\n    8391,\n    816116592,\n    816153144,\n    812205481,\n    807837071,\n    807834407,\n    827735648,\n    816119480,\n    816158236,\n    8343,\n    8244\n)<br />
Jun 19 18:04:21 iphone UIKitApplication:com.yourcompany.DrillDownApp[0xe85e][95]: terminate called after throwing an instance of &#8216;NSException&#8217;<br />
Jun 19 18:04:22 iphone ReportCrash[96]: Formulating crash report for process DrillDownApp[95]<br />
Jun 19 18:04:23 iphone com.apple.launchd[1] (UIKitApplication:com.yourcompany.DrillDownApp[0xe85e][95]): Exited abnormally: Abort trap<br />
Jun 19 18:04:23 iphone SpringBoard[39]: Application  com.yourcompany.DrillDownApp activate: animated  deactivate:  exited abnormally with signal 6: Abort trap<br />
Jun 19 18:04:23 iphone ReportCrash[96]: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/DrillDownApp_2009-06-19-180422_iphone.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0<br />
Jun 19 18:04:23 iphone com.apple.SpringBoard[39]: CoreAnimation: timed out fence 2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fabiano</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-2029</link>
		<dc:creator>fabiano</dc:creator>
		<pubDate>Thu, 18 Jun 2009 00:03:40 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-2029</guid>
		<description>Hello Brandon,
First of all thank you very much for your wonderfull tutrial, because of that i was able to do the application i wanted.

But unfortunatly I having a big big issue,
Basically when i try to deploy your application(downloaded from this site) or my application in the device itself(my iphone is 2G, jailbreak and running on 2.2 firmware) i simple does not open the application on the device, while in the simulator it works fine.
I think that this problem might be related to the database...
So my question is, were you able to make your application work on a real device?

thanks a lot and hope to hear back since my whole application is based on a database.</description>
		<content:encoded><![CDATA[<p>Hello Brandon,<br />
First of all thank you very much for your wonderfull tutrial, because of that i was able to do the application i wanted.</p>
<p>But unfortunatly I having a big big issue,<br />
Basically when i try to deploy your application(downloaded from this site) or my application in the device itself(my iphone is 2G, jailbreak and running on 2.2 firmware) i simple does not open the application on the device, while in the simulator it works fine.<br />
I think that this problem might be related to the database&#8230;<br />
So my question is, were you able to make your application work on a real device?</p>
<p>thanks a lot and hope to hear back since my whole application is based on a database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-1919</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Wed, 03 Jun 2009 03:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-1919</guid>
		<description>Thanks for the tutorial Brandon. At first I was really alienated by this language. Your tutorial helped me understand some aspects of objective-c. Btw, I&#039;m coming from  actionscript 3.0 background. 

However, I noticed that when I run the completed &quot;To do app&quot; and check the leak by doing (Run&gt;Start with Performance Tool&gt;Leaks). I encounter some heaps on the leak graph. 

I just want to know if it&#039;s fine or bad for the application.
Hope for your prompt response.

and keep the tutorials coming.
more power</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial Brandon. At first I was really alienated by this language. Your tutorial helped me understand some aspects of objective-c. Btw, I&#8217;m coming from  actionscript 3.0 background. </p>
<p>However, I noticed that when I run the completed &#8220;To do app&#8221; and check the leak by doing (Run&gt;Start with Performance Tool&gt;Leaks). I encounter some heaps on the leak graph. </p>
<p>I just want to know if it&#8217;s fine or bad for the application.<br />
Hope for your prompt response.</p>
<p>and keep the tutorials coming.<br />
more power</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-1892</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 29 May 2009 15:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-1892</guid>
		<description>@Chris Allen

I was having the same problem. The code was throwing an exception as soon as the RootViewController tried to push the todoViewController on to the stack. After scanning a lot of code, I finally just deleted the todoViewController.xib file and regenerated it by hand.

After that the problem went away. My guess (since it worked in part 3) is that something went awry when I changed the UITextView to a UITextField and fouled up the XML underlying the view.</description>
		<content:encoded><![CDATA[<p>@Chris Allen</p>
<p>I was having the same problem. The code was throwing an exception as soon as the RootViewController tried to push the todoViewController on to the stack. After scanning a lot of code, I finally just deleted the todoViewController.xib file and regenerated it by hand.</p>
<p>After that the problem went away. My guess (since it worked in part 3) is that something went awry when I changed the UITextView to a UITextField and fouled up the XML underlying the view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Merimim</title>
		<link>http://icodeblog.com/2008/09/22/iphone-programming-tutorial-creating-a-todo-list-using-sqlite-part-4/comment-page-2/#comment-1882</link>
		<dc:creator>Merimim</dc:creator>
		<pubDate>Thu, 28 May 2009 08:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://icodeblog.com/?p=392#comment-1882</guid>
		<description>finally, it didn&#039;t solve the bug. 
So leave the return -1.</description>
		<content:encoded><![CDATA[<p>finally, it didn&#8217;t solve the bug.<br />
So leave the return -1.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
