Xamarin.iOS
Agregar UIRefreshControl a una vista de tabla
Buscar..
Agregar un control UIRefresh a un TableView
Suposiciones
TableView - referencia a la TableView
DataSource - es una clase que hereda UITableViewSource
DataSource.Objects: es una lista pública <object> (), accesible para UIViewController
private UIRefreshControl refreshControl;
public override void ViewDidLoad()
{
base.ViewDidLoad();
// Set the DataSource for the TableView
TableView.Source = dataSource = new DataSource(this);
// Create the UIRefreshControl
refreshControl = new UIRefreshControl();
// Handle the pullDownToRefresh event
refreshControl.ValueChanged += refreshTable;
// Add the UIRefreshControl to the TableView
TableView.AddSubview(refreshControl);
}
private void refreshTable(object sender, EventArgs e)
{
fetchData();
refreshControl.EndRefreshing();
TableView.ReloadData();
}
private void fetchData()
{
var objects = new List<object>();
// fetch data and store in objects.
dataSource.Objects = objects;
}
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow