Esempio n. 1
0
 /// <summary>
 /// Activate Controller should be called before any of Push or Pop controller
 /// </summary>
 /// <param name="controllerType">The type of the View Controller</param>
 /// <param name="state">true to enable, false otherwise</param>
 public static void ActivateController(System.Type controllerType, bool state)
 {
     if (navigationController != null)
     {
         navigationController.activateController(controllerType, state);
     }
 }