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

            flowLayout     = new UICollectionViewFlowLayout();
            viewController = new BingImageGridViewController(flowLayout);

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

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

            flowLayout = new UICollectionViewFlowLayout ();
            viewController = new BingImageGridViewController (flowLayout);

            window.RootViewController = viewController;
            window.MakeKeyAndVisible ();
            
            return true;
        }