Exemplo n.º 1
0
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			// create a new window instance based on the screen size
			window = new UIWindow (UIScreen.MainScreen.Bounds);
			if (navigationController == null)
				navigationController = new UINavigationController ();
			if (projectCollectionView == null)
				projectCollectionView = new ProjectCollectionViewController (new ProjectCollectionLayout());
			// If you have defined a root view controller, set it here:
			// window.RootViewController = myViewController;
			navigationController.PushViewController (projectCollectionView, true);

			window.RootViewController = navigationController;
			// make the window visible
			window.MakeKeyAndVisible ();
			
			return true;
		}
Exemplo n.º 2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // create a new window instance based on the screen size
            window = new UIWindow(UIScreen.MainScreen.Bounds);
            if (navigationController == null)
            {
                navigationController = new UINavigationController();
            }
            if (projectCollectionView == null)
            {
                projectCollectionView = new ProjectCollectionViewController(new ProjectCollectionLayout());
            }
            // If you have defined a root view controller, set it here:
            // window.RootViewController = myViewController;
            navigationController.PushViewController(projectCollectionView, true);

            window.RootViewController = navigationController;
            // make the window visible
            window.MakeKeyAndVisible();

            return(true);
        }