AirPic.Demo.AppDelegate.FinishedLaunching C# (CSharp) Method

FinishedLaunching() public method

public FinishedLaunching ( UIApplication application, NSDictionary launchOptions ) : bool
application UIApplication
launchOptions NSDictionary
return bool
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            RunningOnIPad = UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Pad;

            Window = new UIWindow (UIScreen.MainScreen.Bounds);
            Window.RootViewController = new UINavigationController (new ImageViewController ());
            Window.MakeKeyAndVisible ();
            return true;
        }