views:

32

answers:

0

I'm making a TabBarApp.

My first tab is a "main menu" (UINavigationController) some of the views in the menu is also available in the tabbar.

I call [tabbarController setSelectedView:] instead of pushViewController when those spesific rows are selected.

I want to use the same push animation as a NavigationController when calling [tabbarController setSelectedView:]. I have used CATransition to do this, but the problem is the screen turns white before pushing in the new view. I want it to push out the old view not a blank view..

How can i fix this?