views:

299

answers:

3

Does anyone know a good tutorial for Tab bars?

My app is currently a "view-based" app. I need a tutorial on how to make it so that my main nib loads the view from other nibs, and when I click different tabs, it loads other nibs.

Thanks

+1  A: 

Have you looked around this site?

http://www.cocoadevcentral.com/

+1  A: 

TheElements sample code in the Apple SDK -- lots of links on StackOverflow and elsewhere for combining with navigation controllers (always add nav controllers to the tab bar, not vice versa!)

iPhoneDollaraire
+3  A: 

The iPhone Developers' Cookbook by Erica Sadun has a good recipe for tabbars on page 126, including customising the bar from a list of controllers.

Jane Sales