// 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 Touches_GestureRecognizersViewController (window, "Touches_GestureRecognizersViewController", 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 Touches_GestureRecognizersViewController(window, "Touches_GestureRecognizersViewController", null);
            window.RootViewController = viewController;
            window.MakeKeyAndVisible();

            return(true);
        }
			public GestureDelegate (Touches_GestureRecognizersViewController controller)
			{
				this.controller = controller;
			}
 public GestureDelegate(Touches_GestureRecognizersViewController controller)
 {
     this.controller = controller;
 }