Inheritance: UINavigationController
		public override bool FinishedLaunching (UIApplication app, NSDictionary options)
		{
			CredentialCookies = new Dictionary<string, Cookie>{ };
			ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, ssl) => { return true; };
			
			controller = new MainNavController();
			
			window.RootViewController = controller;
			window.MakeKeyAndVisible ();
	
			return true;
		}
Exemple #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            CredentialCookies = new Dictionary <string, Cookie> {
            };
            ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, ssl) => { return(true); };

            controller = new MainNavController();

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

            return(true);
        }