Re: [iPhone] tab bar and navigation combined...

2009-05-05 Thread James Montgomerie
On 5 May 2009, at 16:38, James Lin wrote: Basically I am doing a Tab Bar based application but need Navigation functionalities combined into one. This is covered in the "View Controller Programming Guide for iPhone OS", in the "Combining Tab Bar and Navigation Controllers" section: http:/

Re: [iPhone] tab bar and navigation combined...

2009-05-05 Thread Brian Slick
I found this thread: http://www.iphonedevsdk.com/forum/iphone-sdk-development/2447-tab-bar-controller-navigation-controller-tableview.html ...to be very helpful when trying to accomplish the same thing. Brian On May 5, 2009, at 11:38 AM, James Lin wrote: Hi list, I have a iPhone program. T

Re: [iPhone] tab bar and navigation combined...

2009-05-05 Thread Luke the Hiesterman
You should put navigation controllers inside of your tab bar controller. That is, on the tab you want to contain navigation features, set that tab's view controller to be a UINavigationController. Then when you need to push a view, you can simply call pushViewController:animated: on that na

[iPhone] tab bar and navigation combined...

2009-05-05 Thread James Lin
Hi list, I have a iPhone program. The main interface is Tab Bar based and consist of 3 Tab Bar views. On two of the tab bar views, I'll have a table view on each of them. Once the table view cell is clicked, I need to do a "pushview" to show details of the item selected. Basically I am do