<?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: Simple iPhone Tutorial (Part 2)</title>
	<atom:link href="http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/feed" rel="self" type="application/rss+xml" />
	<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html</link>
	<description>A Software Developer's Blog</description>
	<lastBuildDate>Fri, 01 Jan 2010 05:18:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: James Burton</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-839</link>
		<dc:creator>James Burton</dc:creator>
		<pubDate>Mon, 13 Jul 2009 13:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-839</guid>
		<description>FYI, you have a bad image reference here ... looking at the paths I can see that http://miketeo.net/wp/wp-content/uploads/2008/08/slidetablecell2.jpg is supposed to be http://miketeo.net/wp/wp-content/uploads/2008/08/slidertablecell2.jpg (e.g. slide -&gt; slider).</description>
		<content:encoded><![CDATA[<p>FYI, you have a bad image reference here &#8230; looking at the paths I can see that <a href="http://miketeo.net/wp/wp-content/uploads/2008/08/slidetablecell2.jpg" rel="nofollow">http://miketeo.net/wp/wp-content/uploads/2008/08/slidetablecell2.jpg</a> is supposed to be <a href="http://miketeo.net/wp/wp-content/uploads/2008/08/slidertablecell2.jpg" rel="nofollow">http://miketeo.net/wp/wp-content/uploads/2008/08/slidertablecell2.jpg</a> (e.g. slide -&gt; slider).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miketeo</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-751</link>
		<dc:creator>miketeo</dc:creator>
		<pubDate>Wed, 22 Apr 2009 08:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-751</guid>
		<description>@Yiting:
If you are thinking about html-style of tables, AFAIK there is no API that can directly give you this feature. You may want to look at subclassing UITableViewCell to &quot;draw&quot; your own columns.</description>
		<content:encoded><![CDATA[<p>@Yiting:<br />
If you are thinking about html-style of tables, AFAIK there is no API that can directly give you this feature. You may want to look at subclassing UITableViewCell to &#8220;draw&#8221; your own columns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yiting</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-750</link>
		<dc:creator>Yiting</dc:creator>
		<pubDate>Tue, 21 Apr 2009 03:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-750</guid>
		<description>Hi, I will like to ask is it possible to create a table with columns for the iphone native application?</description>
		<content:encoded><![CDATA[<p>Hi, I will like to ask is it possible to create a table with columns for the iphone native application?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ellen Strnod</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-714</link>
		<dc:creator>Ellen Strnod</dc:creator>
		<pubDate>Sat, 14 Feb 2009 03:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-714</guid>
		<description>A change to my post above: I noticed later that doing this to the tab bar controller just moved the gap to below the tab bar buttons!  Doing it on the navigation bar controllers removed the gap entirely.</description>
		<content:encoded><![CDATA[<p>A change to my post above: I noticed later that doing this to the tab bar controller just moved the gap to below the tab bar buttons!  Doing it on the navigation bar controllers removed the gap entirely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ellen</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-713</link>
		<dc:creator>Ellen</dc:creator>
		<pubDate>Fri, 13 Feb 2009 16:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-713</guid>
		<description>I created the navigation controllers programmatically from root view controllers of views created in the Interface Builder.

I found the answer to removing the gap with the nav bars created the way I did it though:
http://justingallagher.com/post/75183205/quick-tip-remove-gap-between-iphone-status-bar-and.   He suggests to do this:
[viewController.view setFrame: [viewController.view bounds]];

I did this to the tab bar controller and it removed the gap.</description>
		<content:encoded><![CDATA[<p>I created the navigation controllers programmatically from root view controllers of views created in the Interface Builder.</p>
<p>I found the answer to removing the gap with the nav bars created the way I did it though:<br />
<a href="http://justingallagher.com/post/75183205/quick-tip-remove-gap-between-iphone-status-bar-and" rel="nofollow">http://justingallagher.com/post/75183205/quick-tip-remove-gap-between-iphone-status-bar-and</a>.   He suggests to do this:<br />
[viewController.view setFrame: [viewController.view bounds]];</p>
<p>I did this to the tab bar controller and it removed the gap.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miketeo</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-712</link>
		<dc:creator>miketeo</dc:creator>
		<pubDate>Fri, 13 Feb 2009 00:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-712</guid>
		<description>@Ellen: It&#039;s hard for me to pinpoint your issue. My hunch is that it could be that your navigation controller views may have been &quot;created&quot; with a navigation bar item in the Interface Builder.</description>
		<content:encoded><![CDATA[<p>@Ellen: It&#8217;s hard for me to pinpoint your issue. My hunch is that it could be that your navigation controller views may have been &#8220;created&#8221; with a navigation bar item in the Interface Builder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ellen</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-711</link>
		<dc:creator>Ellen</dc:creator>
		<pubDate>Thu, 12 Feb 2009 23:59:30 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-711</guid>
		<description>Thank you for the tutorial; it was very helpful, as I was having a lot of trouble getting my first screen to work with anything other than a static interface builder page when following the UITabControllerView tutorials, but you solved my problem.  I have another one though (sort of a follow-on related problem) ...

As with your example, I initially had navigation bars that I put in the screens with Interface Builder with static headings, as you described, but was unable to interact with them so removed them and added them programmatically. As described in several sources including Apple&#039;s, the Navigation controller is constructed using initWithRootViewController:, passing in the view controller for the initial screen.  I then modified my app delegate to add the views of the navigation controller as subviews of the tab controller viewController views (instead of the original UIView screens.)  The problem I am having with that, however, is that there is a white row between the status bar and the navigation bar on all the pages, which looks equivalent to the height of the status bar.  Do you know how I can correct this, or alternately (and preferably, probably), how do you interact with the Navigation Bars added to the screens as you did, with Interface Builder?

Thanks again for your great articles!</description>
		<content:encoded><![CDATA[<p>Thank you for the tutorial; it was very helpful, as I was having a lot of trouble getting my first screen to work with anything other than a static interface builder page when following the UITabControllerView tutorials, but you solved my problem.  I have another one though (sort of a follow-on related problem) &#8230;</p>
<p>As with your example, I initially had navigation bars that I put in the screens with Interface Builder with static headings, as you described, but was unable to interact with them so removed them and added them programmatically. As described in several sources including Apple&#8217;s, the Navigation controller is constructed using initWithRootViewController:, passing in the view controller for the initial screen.  I then modified my app delegate to add the views of the navigation controller as subviews of the tab controller viewController views (instead of the original UIView screens.)  The problem I am having with that, however, is that there is a white row between the status bar and the navigation bar on all the pages, which looks equivalent to the height of the status bar.  Do you know how I can correct this, or alternately (and preferably, probably), how do you interact with the Navigation Bars added to the screens as you did, with Interface Builder?</p>
<p>Thanks again for your great articles!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pat</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-705</link>
		<dc:creator>Pat</dc:creator>
		<pubDate>Thu, 05 Feb 2009 19:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-705</guid>
		<description>Your source code image for OnOffTableCell.m is wrong.  You are displaying the app delegate code.  I went ahead and downloaded your source to see what it is.  But the page probably needs to be updated to reflect the correct code.</description>
		<content:encoded><![CDATA[<p>Your source code image for OnOffTableCell.m is wrong.  You are displaying the app delegate code.  I went ahead and downloaded your source to see what it is.  But the page probably needs to be updated to reflect the correct code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miketeo</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-626</link>
		<dc:creator>miketeo</dc:creator>
		<pubDate>Mon, 22 Dec 2008 02:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-626</guid>
		<description>@elia: I&#039;ve overlooked the missing releases. The sources have been updated. Thanks for pointing these out.</description>
		<content:encoded><![CDATA[<p>@elia: I&#8217;ve overlooked the missing releases. The sources have been updated. Thanks for pointing these out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elia</title>
		<link>http://miketeo.net/wp/index.php/2008/08/31/simple-iphone-tutorial-part-2.html/comment-page-1#comment-597</link>
		<dc:creator>Elia</dc:creator>
		<pubDate>Sun, 28 Sep 2008 00:28:27 +0000</pubDate>
		<guid isPermaLink="false">http://miketeo.net/wp/?p=406#comment-597</guid>
		<description>Good tutorial. A lot clearer here than in Apple&#039;s example code. Just noting that you did not include releases for onOffSwitch, title, and slider in your OnOffTableCell and SliderTableCell dealloc methods. I am assuming this was an oversight...</description>
		<content:encoded><![CDATA[<p>Good tutorial. A lot clearer here than in Apple&#8217;s example code. Just noting that you did not include releases for onOffSwitch, title, and slider in your OnOffTableCell and SliderTableCell dealloc methods. I am assuming this was an oversight&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
