示例#1
0
		// This method is invoked when the application has loaded its UI and its ready to run
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			ImageScrollViewController controller = new ImageScrollViewController ();
			
			// If you have defined a view, add it here:
			window.AddSubview (controller.View);
			
			window.MakeKeyAndVisible ();
			
			return true;
		}
示例#2
0
        // This method is invoked when the application has loaded its UI and its ready to run
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            ImageScrollViewController controller = new ImageScrollViewController();

            // If you have defined a view, add it here:
            window.AddSubview(controller.View);

            window.MakeKeyAndVisible();

            return(true);
        }