public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // Override point for customization after application launch.
            // If not required for your application you can safely delete this method
            var x = new AdColonyDelegate ();

            AdColony.ConfigureWithAppID ("appbdee68ae27024084bb334a", new NSObject[1]{ new NSString ("vzf8fb4670a60e4a139d01b5") }, x, true);

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

            var vc = new ViewController ();
            Window.RootViewController = vc;
            Window.MakeKeyAndVisible ();
            return true;
        }
Exemplo n.º 2
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // Override point for customization after application launch.
            // If not required for your application you can safely delete this method
            var x = new AdColonyDelegate();


            AdColony.ConfigureWithAppID("appbdee68ae27024084bb334a", new NSObject[1] {
                new NSString("vzf8fb4670a60e4a139d01b5")
            }, x, true);

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

            var vc = new ViewController();

            Window.RootViewController = vc;
            Window.MakeKeyAndVisible();
            return(true);
        }