hi guys, i have found lots of info about this topic but have yet to crack how it is actually done.
I want to add a UITabBar in an iPhone app into an application already with a UIWindow / UINavigation Controller as the default Window.
i.e. add a tab bar to a typical NavControl app with, RootViewController.xib, MainWindow.xib, AddView.xib, DetailView.xib, EditView.xib etc... Which one do I edit?
If someone could point me to a visual example it would be appreciated. Screencast will surely get bonus points, this question is asked so much on the web, and I can't find a simple answer. See: http://stackoverflow.com/questions/482270/how-to-add-a-tabbar-to-navigationcontroller-based-iphone-app
Regards, @norskben
Samples
eg. the appdelegate is like this:
@interface SQLAppDelegate : NSObject {
UIWindow *window;
UINavigationController *navigationController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window; @property (nonatomic, retain) IBOutlet UINavigationController *navigationController;