Hi,
I have been messing around for hours now trying to get this to work.
I am building an application which needs to have a very customised Tab Bar Controller, initially I was adding each button to the UIView as a button with the image set then setting up the IBAction to do the following when clicked
Code:
[currentView.view removeFromSuperview];
[currentView release];
currentView = [[aboutView alloc] init];
[self.view addSubview:currentView.view];
I am now running into problems where i need to click a UITableViewCell on the news view for example and that needs to push the next view into place NewsViewDetail and for this I need the navigationcontroller.
It seems i have made a complete mess of this and have loss any sense of direction.
I'm now thinking this could all be so much easier if I use UITabBarController along with UINavigationController (hidden) but I am unsure of how I can customise the tab bar to look like the attached screenshot.
Any tips or advice would be much appreciated, this problem has been driving me crazy.
Thanks