示例#1
0
		public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
		{
			// Override point for customization after application launch.
			// If not required for your application you can safely delete this method

			QualificationsViewController vc = new QualificationsViewController ();
			vc.View.BackgroundColor = UIColor.White;

			UINavigationController nav = new UINavigationController (vc);

			Window = new UIWindow (UIScreen.MainScreen.Bounds);

			Window.RootViewController =nav;
			Window.MakeKeyAndVisible();


			// Code to start the Xamarin Test Cloud Agent
			//#if ENABLE_TEST_CLOUD
			//Xamarin.Calabash.Start();
			//#endif

			return true;
		}
		public TableSource(string[] items, QualificationsViewController vc) {
			_tableItems = items;
			_viewController = vc;
		}