public override void ViewWillAppear(bool animated)
 {
     if (!_isInitialized)
     {
         Delegate       = new TabBarDelegate(NavigationController);
         _isInitialized = true;
     }
     if (BaseViewController.ShouldProfileUpdate)
     {
         SelectedIndex = 3;
     }
     NavigationController.SetNavigationBarHidden(true, true);
     base.ViewWillAppear(animated);
 }
Beispiel #2
0
 public override void ViewWillAppear(bool animated)
 {
     if (!_isInitialized)
     {
         var tabBarDelegate = new TabBarDelegate(NavigationController);
         tabBarDelegate.SameTabTapped += () =>
         {
             SameTabTapped.Invoke();
         };
         Delegate       = tabBarDelegate;
         _isInitialized = true;
     }
     if (BaseViewController.ShouldProfileUpdate)
     {
         SelectedIndex = 3;
     }
     NavigationController.SetNavigationBarHidden(true, true);
     base.ViewWillAppear(animated);
 }
Beispiel #3
0
 public override void ViewWillAppear(bool animated)
 {
     Delegate = new TabBarDelegate(NavigationController);
     NavigationController.SetNavigationBarHidden(true, true);
     base.ViewWillAppear(animated);
 }