Exemplo n.º 1
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            window = new UIWindow(UIScreen.MainScreen.Bounds);

            UserData = new SQLite.DataManager(SQLite.DataManager.DatabaseFilePath);

            tabBarController = new TabBarController();

            window.RootViewController = tabBarController;
            window.MakeKeyAndVisible();

            return(true);
        }
Exemplo n.º 2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            window = new UIWindow (UIScreen.MainScreen.Bounds);

            UserData = new SQLite.DataManager(SQLite.DataManager.DatabaseFilePath);

            tabBarController = new TabBarController ();

            window.RootViewController = tabBarController;
            window.MakeKeyAndVisible ();

            return true;
        }