示例#1
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)
		{

			UITabBarController tabBarController;

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

			viewController = new Pubnub_MessagingMain();

			var dv = new Pubnub_MessagingMain (){
				Autorotate = true
			};

			navigation = new UINavigationController ();
			navigation.PushViewController (dv, true);

			window = new UIWindow (UIScreen.MainScreen.Bounds);
			window.MakeKeyAndVisible ();
			window.RootViewController = navigation;	
			/*if (UIDevice.CurrentDevice.CheckSystemVersion (5, 0))
				window.RootViewController = navigation;	
			else
				window.AddSubview (navigation.View);*/

			return true;
		}
示例#2
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)
        {
            UITabBarController tabBarController;

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

            viewController = new Pubnub_MessagingMain();

            var dv = new Pubnub_MessagingMain()
            {
                Autorotate = true
            };

            navigation = new UINavigationController();
            navigation.PushViewController(dv, true);

            window = new UIWindow(UIScreen.MainScreen.Bounds);
            window.MakeKeyAndVisible();
            window.RootViewController = navigation;

            /*if (UIDevice.CurrentDevice.CheckSystemVersion (5, 0))
             *      window.RootViewController = navigation;
             * else
             *      window.AddSubview (navigation.View);*/

            return(true);
        }