public override void ViewDidLoad ()
		{
			base.ViewDidLoad ();

			C_Source = new RottenTomatoesTableViewSource(Enumerable.Empty<TableGroupItems>());

			TableView = new UITableView(Rectangle.Empty) {Source = C_Source};

			RefreshControl = new UIRefreshControl();

			C_Source.OnRowSelect = OnRowSelect;
			RefreshControl.ValueChanged += RefreshControlOnValueChanged;
		}
예제 #2
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            C_Source = new RottenTomatoesTableViewSource(Enumerable.Empty <TableGroupItems>());

            TableView = new UITableView(Rectangle.Empty)
            {
                Source = C_Source
            };

            RefreshControl = new UIRefreshControl();

            C_Source.OnRowSelect         = OnRowSelect;
            RefreshControl.ValueChanged += RefreshControlOnValueChanged;
        }