public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
 {
     GDLibrary          = GDiOS.SharedInstance();
     GDLibrary.Delegate = this;
     GDLibrary.Authorize();
     Window = GDLibrary.GetWindow();
     Window.MakeKeyAndVisible();
     return(true);
 }
Ejemplo n.º 2
0
        // This is the main entry point of the application.
        static void Main(string[] args)
        {
            GDiOS.InitializeWithClassNameConformingToUIApplicationDelegate(ApplicationDelegateName);

            UIApplication.Main(args, null, ApplicationDelegateName);
        }