//
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOff("8a2f26739dc3810018973494f39c9019_ODY2MjAxMS0xMC0wNCAxODozMDozOC4wMTk4Mzk");

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

            viewController = new TestFlightSampleViewController("TestFlightSampleViewController", null);
            //window.RootViewController = viewController;

            var menu = new RootElement("Demos")
            {
                new Section("Enter some stuff")
                {
                    new EntryElement("Name:", "", prefs.StringForKey("UserName")),
                    new EntryElement("Email:", "", prefs.StringForKey("Email"))
                }
            };

            var dv = new DialogViewController(menu)
            {
                Autorotate = true
            };

            window.AddSubview(dv.View);

            window.MakeKeyAndVisible();

            return(true);
        }
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOff("yourTeamTokenHere");

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

            viewController = new TestFlightSampleViewController ("TestFlightSampleViewController", null);
            window.RootViewController = viewController;
            window.MakeKeyAndVisible ();

            return true;
        }
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOff("yourTeamTokenHere");

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

            viewController            = new TestFlightSampleViewController("TestFlightSampleViewController", null);
            window.RootViewController = viewController;
            window.MakeKeyAndVisible();

            return(true);
        }
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOffThreadSafe(TestFlightAppToken);

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

            viewController = new TestFlightSampleViewController ();

            window.RootViewController = viewController;

            window.MakeKeyAndVisible ();

            return true;
        }
Exemplo n.º 5
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOff("8a2f26739dc3810018973494f39c9019_ODY2MjAxMS0xMC0wNCAxODozMDozOC4wMTk4Mzk");

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

            viewController = new TestFlightSampleViewController ("TestFlightSampleViewController", null);

            window.RootViewController = viewController;

            window.MakeKeyAndVisible ();

            return true;
        }
Exemplo n.º 6
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOff("8a2f26739dc3810018973494f39c9019_ODY2MjAxMS0xMC0wNCAxODozMDozOC4wMTk4Mzk");

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

            viewController = new TestFlightSampleViewController("TestFlightSampleViewController", null);

            window.RootViewController = viewController;

            window.MakeKeyAndVisible();

            return(true);
        }
Exemplo n.º 7
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            TestFlight.TakeOffThreadSafe(TestFlightAppToken);

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

            viewController = new TestFlightSampleViewController();

            window.RootViewController = viewController;

            window.MakeKeyAndVisible();

            return(true);
        }
Exemplo n.º 8
0
        //
        // This method is invoked when the application has loaded and is ready to run. In this
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            #if DEBUG
            TestFlight.SetDeviceIdentifier(UIDevice.CurrentDevice.UniqueIdentifier);
            #endif
            TestFlight.TakeOffThreadSafe(TestFlightAppToken);

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

            viewController = new TestFlightSampleViewController ("TestFlightSampleViewController", null);

            window.RootViewController = viewController;

            window.MakeKeyAndVisible ();

            return true;
        }