Example #1
0
        // This method is invoked when the application has loaded its UI and is ready to run
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            window = new UIWindow(UIScreen.MainScreen.Bounds);

            viewController            = new ViewTransitionsViewController("ViewTransitionsViewController", null);
            window.RootViewController = viewController;
            window.MakeKeyAndVisible();

            return(true);
        }
Example #2
0
		// This method is invoked when the application has loaded its UI and is ready to run
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			window = new UIWindow (UIScreen.MainScreen.Bounds);

			viewController = new ViewTransitionsViewController ("ViewTransitionsViewController", null);
			window.RootViewController = viewController;
			window.MakeKeyAndVisible ();

			return true;
		}
 public AnimationDelegate(ViewTransitionsViewController ctrl)
 {
     this.ctrl = ctrl;
 }
 public AnimationDelegate(ViewTransitionsViewController ctrl)
 {
     this.ctrl = ctrl;
 }