Beispiel #1
0
        // This method is invoked when the application has loaded its UI and its ready to run
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // If you have defined a view, add it here:
            // window.AddSubview (navigationController.View);
            //UIApplication.SharedApplication.IdleTimerDisabled = true;

            //var r = new Reachability();
            //var reachable = r.IsHostReachable("www.google.com");

            HomeViewController hvc = new HomeViewController();
            hvc.View.Frame = new RectangleF(0f, 20f, 320f, 460f);
            window.AddSubview(hvc.View);
            window.MakeKeyAndVisible ();

            showSplashScreen();
            return true;
        }
 public TableViewSource(HomeViewController hvc)
 {
     _hvc = hvc;
     _podcastList = hvc._podcastList;
 }
 public PlayerViewController(HomeViewController hvc)
     : base("PlayerViewController", null)
 {
     _hvc = hvc;
     Initialize ();
 }