public TableViewSource(RefreshingUITableViewController rtvc)
 {
     _list = rtvc._list;
     _checkForRefresh = false;
     _reloading = false;
     _refreshHeaderView = rtvc._refreshHeaderView;
     _table = rtvc.TableView;
 }
 public TableViewSource(RefreshingUITableViewController rtvc)
 {
     _list              = rtvc._list;
     _checkForRefresh   = false;
     _reloading         = false;
     _refreshHeaderView = rtvc._refreshHeaderView;
     _table             = rtvc.TableView;
 }
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // Create the main view controller
            var vc = new RefreshingUITableViewController ();

            // Create the main window and add main view
            // controller as a subview
            window = new UIWindow (UIScreen.MainScreen.Bounds);
            window.AddSubview (vc.View);

            window.MakeKeyAndVisible ();
            return true;
        }
Example #4
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // Create the main view controller
            var vc = new RefreshingUITableViewController();

            // Create the main window and add main view
            // controller as a subview
            window = new UIWindow(UIScreen.MainScreen.Bounds);
            window.AddSubview(vc.View);

            window.MakeKeyAndVisible();
            return(true);
        }