XAMARIN.IOS UITabBarController in some UIViewControllers
问题 I have an application (Xamarin.IOS) which start with a UIViewController (Connection view) with no TabBar. But when user Logged, I'd like to add the tabbar that I've created to other views. And vis-versa, when user logged out, I'd like to display the connection view without TabBar. I know that when I want to display the TabBar, in appDelegate, I have to initialize _window like this : _tabController = new TabController(); _window.RootViewController = _tabController; _window.MakeKeyAndVisible();