Note: I’m using monotouch.
Hello,
I’m trying to develop the following UI: UIVIewController (root) > UITabBarController, and I’m doing this programatically.
Actually, it’s a simple question.
I’ll have some UIBUttons in UIViewcontroller (root) and these buttons are gonna open different UITABBARController. E.g. BUtton 1 -> Open UITabbarController 1 (with 3 tabs). Button 2 -> Open UITabBarContoller 2 (with 4 tabs).
Does anybody know if it’s truly possible?
What’s the method that i should put in the event of the button? rootview.View.AddSubview(Tabbar)?
Thanks in advance!

To do this, display each UITabBarController modally with
PresentModalViewControlleron your parent controller.I think you would be better off using UINavigationController with UITableViews inside for the UI you mention, however. It will make much more sense to the user, in my opinion.