示例#1
0
 public static void PushBackground(UIBackgroundController controller)
 {
     if (navigationController != null)
     {
         navigationController.pushBackground(controller);
     }
 }
示例#2
0
    void Start()
    {
        mStarted = true;
        if (navigationController == null)
        {
            navigationController = UINavigationController.navigationController;
        }

        if (backgroundControllerInstance == null)
        {
            backgroundControllerInstance = gameObject.GetComponent <UIBackgroundController>();
        }
    }
    void Start()
    {
        mStarted = true;
        if (navigationController == null)
        {
            navigationController = UINavigationController.navigationController;
        }

        if (backgroundInstance == null)
        {
            backgroundInstance = this.gameObject.GetComponent<UIBackgroundController>();
        }
    }