예제 #1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            DeleteDatabaseIfItAlreadyExists(); 

            window = new UIWindow(UIScreen.MainScreen.Bounds);
            
            viewController = new CreateDatabaseWithSqliteNetViewController();
            window.BackgroundColor = UIColor.White;
            window.RootViewController = viewController;
            window.MakeKeyAndVisible();
            
            return true;
        }
예제 #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            DeleteDatabaseIfItAlreadyExists();

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

            viewController            = new CreateDatabaseWithSqliteNetViewController();
            window.BackgroundColor    = UIColor.White;
            window.RootViewController = viewController;
            window.MakeKeyAndVisible();

            return(true);
        }