views:

107

answers:

0

I'm learning cocao touch, and trying to make an app with a tabbar, various views, one of them af navigation controller, controlling a normal table with a normal tree architecture.

In one of the tableviews I want to flip a different tableview, also capable of navigating down multiple tables.

The way I've tryid to make it, is with a standard tabbarcontroller made with Interface Builder. The navigation controller is made only programmatically. The way it's implemented now, the navigation controller loads a tableviewcontroller with initWithRootViewController:

Now I want to switch to a different tableview, created with a new controller. This switch should be an animated flip from one tableview to another, just like pushViewController: does it.

How do I set this up? How should I change the controller, and doing the animation. Code examples would be great!

I hope I've made myself clear...