Re: UINavigationController inside a TabBarController

2010-02-13 Thread Roland King
yes set the style to 'bar' On 13-Feb-2010, at 6:08 PM, Laurent Daudelin wrote: > It is but I wanted to have the "bar" style, like in the Settings. So, there > is no way to get a segmented control of that size without overriding the > drawing method? > > -Laurent. > -- > Laurent Daudelin > AIM

Re: UINavigationController inside a TabBarController

2010-02-13 Thread Laurent Daudelin
It is but I wanted to have the "bar" style, like in the Settings. So, there is no way to get a segmented control of that size without overriding the drawing method? -Laurent. -- Laurent Daudelin AIM/iChat/Skype:LaurentDaudelin http://nemesys.dyndns.org Logiciels

Re: UINavigationController inside a TabBarController

2010-02-12 Thread Roland King
What's the 'style' on the segmented control set to? The 'bar' style is smaller than the 'plain' or 'bordered' styles. On 13-Feb-2010, at 1:54 PM, Laurent Daudelin wrote: > Thanks, that was helpful but I had already figured it out. After examining > the "Recipes" sample, which does exactly what

Re: UINavigationController inside a TabBarController

2010-02-12 Thread Laurent Daudelin
Thanks, that was helpful but I had already figured it out. After examining the "Recipes" sample, which does exactly what I wanted to do, I did notice that the sample didn't have a pre-configured tableview. So, I removed my tableview from the view hierarchy and, in viewDidLoad, I did set the tabl

Re: UINavigationController inside a TabBarController

2010-02-12 Thread Kevin Callahan
On Feb 12, 2010, at 8:34 PM, Laurent Daudelin wrote: > I'm not sure what I'm missing but I know it must be big. I started the design > of a TabBar-style app and now, I want one of the view to be a navigation one. > I did drag a UINavigationController to my xib, put it inside the TabBarView > a

Re: UINavigationController inside a TabBarController

2010-02-12 Thread Henry McGilton (Boulevardier)
On Feb 12, 2010, at 8:34 PM, Laurent Daudelin wrote: > I'm not sure what I'm missing but I know it must be big. I started the design > of a TabBar-style app and now, I want one of the view to be a navigation one. > I did drag a UINavigationController to my xib, put it inside the TabBarView > a

Re: UINavigationController inside a TabBarController

2010-02-12 Thread Laurent Daudelin
Thanks, Dave. I'll have a look though I would prefer to keep as much the UI into IB. -Laurent. -- Laurent Daudelin AIM/iChat/Skype:LaurentDaudelin http://nemesys.dyndns.org Logiciels Nemesys Software laurent.daude...@

Re: UINavigationController inside a TabBarController

2010-02-12 Thread Dave DeLong
Here's a blog post I wrote last year on how to do this programmatically (which I find much easier to understand than doing it in Interface Builder): http://www.davedelong.com/blog/2009/05/13/adding-uinavigationuitableview-controllers-uitabbarcontroller There's also a sample project and a PDF in

UINavigationController inside a TabBarController

2010-02-12 Thread Laurent Daudelin
I'm not sure what I'm missing but I know it must be big. I started the design of a TabBar-style app and now, I want one of the view to be a navigation one. I did drag a UINavigationController to my xib, put it inside the TabBarView and put my tableview under the navigation controller. When I ope