<?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: Creating a Tabbar</title>
	<atom:link href="http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html/feed" rel="self" type="application/rss+xml" />
	<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html</link>
	<description>iOS Developer Tips, Tricks and Tutorials.</description>
	<lastBuildDate>Wed, 08 Feb 2012 06:31:16 -0600</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Rachel</title>
		<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html#comment-64309</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Mon, 12 Dec 2011 16:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=717#comment-64309</guid>
		<description>Thank you!!! I have been fighting with this for days. 

Your tutorial was simple enough for me to get it working. Other tutorials added in core data and sqlite and custom managed objects and it was a little over my head at first.  The only thing I would suggest that could make it easier would be to have a link to your source code. 

Thanks again, really saved me some frustration.</description>
		<content:encoded><![CDATA[<p>Thank you!!! I have been fighting with this for days. </p>
<p>Your tutorial was simple enough for me to get it working. Other tutorials added in core data and sqlite and custom managed objects and it was a little over my head at first.  The only thing I would suggest that could make it easier would be to have a link to your source code. </p>
<p>Thanks again, really saved me some frustration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathon</title>
		<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html#comment-12381</link>
		<dc:creator>Jonathon</dc:creator>
		<pubDate>Wed, 31 Mar 2010 20:57:30 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=717#comment-12381</guid>
		<description>Jared,

You would have created a root view controller that the xib files are loaded into, or you are using the main window. I would subclass a view controller, and load it with the xib files I want as my GUI, and at the top or bottom, add a UIToolbar to the root view controller. think of it hierarchically - 
UIWindow
     UIViewController
            UIToolbar (as subview)
            UIView (the first UI xib file)
            And so on through the views

This way, you can add buttons, views and more to your toolbar, and your view controller holds all your views. 

Cheers,

Joe</description>
		<content:encoded><![CDATA[<p>Jared,</p>
<p>You would have created a root view controller that the xib files are loaded into, or you are using the main window. I would subclass a view controller, and load it with the xib files I want as my GUI, and at the top or bottom, add a UIToolbar to the root view controller. think of it hierarchically &#8211;<br />
UIWindow<br />
     UIViewController<br />
            UIToolbar (as subview)<br />
            UIView (the first UI xib file)<br />
            And so on through the views</p>
<p>This way, you can add buttons, views and more to your toolbar, and your view controller holds all your views. </p>
<p>Cheers,</p>
<p>Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LiveCity</title>
		<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html#comment-5962</link>
		<dc:creator>LiveCity</dc:creator>
		<pubDate>Sat, 24 Oct 2009 20:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=717#comment-5962</guid>
		<description>I have built a navigation based application with drill down.  I need to add a subview with a tabbar after touching a cell.  So far, I have been unsuccessful.  I can get the view to show, but can&#039;t seem to get the tabbar to work.  Can this be done?  If so, is there a tutorial out there?  I am a newbie to programming trying to learn as much as I can.  Tutorials seem to work better for me.

Thanks in advance,
Dustin</description>
		<content:encoded><![CDATA[<p>I have built a navigation based application with drill down.  I need to add a subview with a tabbar after touching a cell.  So far, I have been unsuccessful.  I can get the view to show, but can&#8217;t seem to get the tabbar to work.  Can this be done?  If so, is there a tutorial out there?  I am a newbie to programming trying to learn as much as I can.  Tutorials seem to work better for me.</p>
<p>Thanks in advance,<br />
Dustin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html#comment-5390</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Thu, 01 Oct 2009 20:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=717#comment-5390</guid>
		<description>I&#039;m making an app that has many nib/xib files in it.  All have different backgrounds and buttons on them.  The buttons trigger actions that changes the xib files shown to the user.   The xib files are 320 wide by 480 high.   I animate the transition and everything works perfectly.

What I want to do (but can&#039;t figure out yet) is have a header image (say 100 high to make things easy to explain) that always stays in the same spot even during transitions from one xib to another.  Can I do something like [portraitWindow addSubview:someXibName]; jointly with an animation?</description>
		<content:encoded><![CDATA[<p>I&#8217;m making an app that has many nib/xib files in it.  All have different backgrounds and buttons on them.  The buttons trigger actions that changes the xib files shown to the user.   The xib files are 320 wide by 480 high.   I animate the transition and everything works perfectly.</p>
<p>What I want to do (but can&#8217;t figure out yet) is have a header image (say 100 high to make things easy to explain) that always stays in the same spot even during transitions from one xib to another.  Can I do something like [portraitWindow addSubview:someXibName]; jointly with an animation?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html#comment-225</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 12 Feb 2009 16:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=717#comment-225</guid>
		<description>As you may of already discovered, if you add more tabs than can be shown on the screen, a &quot;More&quot; tab is created by the framework.

As far as vertical arrangement of a tabbar, this is something that you would need to code yourself. I created something similar to this by aligning a vertical row of images from the top to the bottom of the screen.

John</description>
		<content:encoded><![CDATA[<p>As you may of already discovered, if you add more tabs than can be shown on the screen, a &#8220;More&#8221; tab is created by the framework.</p>
<p>As far as vertical arrangement of a tabbar, this is something that you would need to code yourself. I created something similar to this by aligning a vertical row of images from the top to the bottom of the screen.</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://iPhoneDeveloperTips.com/user-interface/creating-a-tabbar.html#comment-224</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Thu, 12 Feb 2009 16:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=717#comment-224</guid>
		<description>You don&#039;t by any chance know how i might go about creating a tab bar that goes vertically instead of horizontally do you? it&#039;s just that i want to fit a lot more than 3 or 4 icons</description>
		<content:encoded><![CDATA[<p>You don&#8217;t by any chance know how i might go about creating a tab bar that goes vertically instead of horizontally do you? it&#8217;s just that i want to fit a lot more than 3 or 4 icons</p>
]]></content:encoded>
	</item>
</channel>
</rss>

