Inheritance: UIViewController
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            _window = new UIWindow(UIScreen.MainScreen.Bounds);
            _controller = new MainController();

            _window.RootViewController = _controller;
            _window.MakeKeyAndVisible();

            return true;
        }